<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta />
    <article-meta>
      <title-group>
        <article-title>A Pairwise Document Analysis Approach for Monolingual Plagiarism Detection</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Nava Ehsan</string-name>
          <email>n.ehsan@ece.ut.ac.ir</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Azadeh Shakery</string-name>
          <email>shakery@ut.ac.ir</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>School of Electrical and Computer Engineering, College of Engineering, University of Tehran</institution>
        </aff>
      </contrib-group>
      <abstract>
        <p>The task of plagiarism detection entails two main steps, suspicious candidate retrieval and pairwise document similarity analysis also called detailed analysis. In this paper we focus on the second subtask. We will report our monolingual plagiarism detection system which is used to process the Persian plagiarism corpus for the task of pairwise document similarity. To retrieve plagiarised passages a plagiarism detection method based on vector space model, insensitive to context reordering, is presented. We evaluate the performance in terms of precision, recall, granularity and plagdet metrics.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>INTRODUCTION</title>
      <p>
        The task of plagiarism detection comprises two main steps:
candidate document retrieval and pairwise document detection or
detailed analysis. Some researchers also included a third step, called
post-processing, where the extracted passage pairs are cleaned,
filtered, and possibly visualized for later presentation [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ]. Detailed
analysis of plagiarism detection task is retrieving passages of text
which have originated from another document. This process is
comparing source and suspicious pairs and retrieving plagiarized
fragments. In this paper we introduce a vector space model for this
task. The proximity of words are considered by dividing the text
into passages. After creating the passages we didn’t take into
account the order of the words in each passage. Thus, this approach
is insensitive to punctuations, extra white spaces and permutation
of the document context in the passages. We also didn’t use any
language specific feature. Thus, our approach is applicable in any
language. The result we obtained on the training data was about
0.82 with respect to Plagdet score.
      </p>
      <p>The rest of the paper is organized as follows: Section 2 outlines
related works in monolingual plagiarism detection. Section 3
describes the pairwise document similarity approach. Finally
experimental results are discussed in Section 4. Conclusion and future
work are reported, in Section 5.</p>
    </sec>
    <sec id="sec-2">
      <title>RELATED WORK</title>
      <p>
        Plagiarism detection could be classified into two classes,
intrinsic and external also called without reference or with reference,
respectively. Intrinsic evaluation is referred to those methods, which
use style analysis to detect parts of the text that are inconsistent in
terms of writing style [
        <xref ref-type="bibr" rid="ref14 ref15">15, 14</xref>
        ]. The aim of external plagiarism
detection is not only finding the suspicious text but also finding the
reference of the suspicious text. In monolingual plagiarism
detection, the suspicious text could be an exact copy or a modified copy
[
        <xref ref-type="bibr" rid="ref17">17</xref>
        ] and it should be large enough to be more than just a
coincidence.
      </p>
      <p>
        One method for monolingual plagiarism detection is comparing
fragments of suspicious and source documents using fingerprint
indexing. Winnowing approach [
        <xref ref-type="bibr" rid="ref22">22</xref>
        ], which is used in the widely
used plagiarism detection tool, MOSS, is based on fingerprint
indexing.
      </p>
      <p>
        There are different approaches for detection monolingual
plagiarism detection. Some of these approaches could be classified into
fingerprinting [
        <xref ref-type="bibr" rid="ref13 ref22">22, 13</xref>
        ], string matching [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ], using stopwords [
        <xref ref-type="bibr" rid="ref24">24</xref>
        ],
vector space models [
        <xref ref-type="bibr" rid="ref12 ref5">12, 5</xref>
        ], probability models [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ], classification
[
        <xref ref-type="bibr" rid="ref16">16</xref>
        ], semantic models [
        <xref ref-type="bibr" rid="ref6 ref7">6, 7</xref>
        ] and structural models [
        <xref ref-type="bibr" rid="ref23">23</xref>
        ]. According
to monolingual experiments in [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] paraphrasing could make
plagiarism detection more difficult. There have been some works for
detecting paraphrased sentences in monolingual texts [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ].
      </p>
      <p>
        In recent years PAN competition offers evaluation environment
to evaluate plagiarism detection algorithms. This competition also
offers evaluation corpora. PAN@FIRE Persian Plagdet 2016
competition [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] prepares a set of suspicious and source documents
written in Persian and the task is to find all plagiarized sections in the
suspicious documents and, if available, the corresponding source
sections. This external plagiarism detection task provides a
situation to evaluate Persian plagiarism detection systems.
3.
      </p>
    </sec>
    <sec id="sec-3">
      <title>PAIRWISE DOCUMENT SIMILARITY ANAL</title>
    </sec>
    <sec id="sec-4">
      <title>YSIS</title>
      <p>In this section we deal with pairwise document similarity
analysis and we will introduce a method based on a vector space model
to detect plagiarized fragments of specified set of suspicious and
source document pairs. We assume that the source and suspicious
pairs are pre-defined for the system. According to PAN
competition this process is called, detailed analysis stage. The problem of
pairwise document analysis is defined as follows: let S0 be a
suspicious document and S be a source document that is likely to contain
similar passages to some passages in S0. S and S0 are compared
section-wise using a language retrieval model. A plagiarism is
considered, if for a pair of sections (Sf and Sf00 ) a similarity above a
threshold is detected.</p>
      <p>
        According to [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ] the detection approaches of this sub-task
includes three building blocks named (1) seeding, (2) match
merging, and (3) extraction filtering. In the following subsections, we
describe them in detail.
3.1
      </p>
    </sec>
    <sec id="sec-5">
      <title>Seeding</title>
      <p>
        Given a suspicious document and a source document, matches
between the two documents are identified using some seed [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ]. In
our approach, first preprocessing phase is performed. Given a
document, a preprocessing phase is performed. We substitute Arabic
ø and ¼ with Persian ø and ¸. The reason is that the mentioned
two letters have different character encodings. Then, stopwords,
punctuations and extra white spaces are removed and tokens are
extracted.
      </p>
      <p>Since, plagiarism usually happens in parts of the text, a
plagiarism detection method should be able to detect local similarities
where only a short passage may be in common in both documents.
Thus, there is a requirement to segment the texts into fragments.
For each document pair, we split the texts into sentences by using
".", "?" and "!" marks. We choose an amount of consecutive
sentences as the smallest unit of plagiarism. Documents are divided
into some fragments each containing n sentences with one sentence
overlap. The sensitivity of the algorithm with respect to parameter
n is shown in Section 4.</p>
      <p>After sentence splitting, a vector space model is created. The
terms of the source document are considered as the vocabulary and
the binary weighting schema is used by setting the ith index 1 if
the ith term occurs in the fragment and 0 otherwise. We regard
suspicious passage Sf and reference passage Sf00 as pairs of
plagiarism candidate sentences whose cosine similarity is greater than
a threshold t1, and at least three terms of the source text are found in
the suspicious fragment. The last criterion is added to avoid
retrieving fragments with coincidental similarity. Sf will be considered
as a plagiarism source of Sf00 if it has maximum cosine similarity
among all source fragments with similarity above the threshold.</p>
      <p>
        The vector creation approach is similar to Eurovoc-based model
proposed in [
        <xref ref-type="bibr" rid="ref20">20</xref>
        ] except that we use it for monolingual texts rather
than cross-lingual texts. Thus, this approach could be easily adapted
to cross language plagiarism detection.
3.2
      </p>
    </sec>
    <sec id="sec-6">
      <title>Match Merging</title>
      <p>
        Finding seed matches between a suspicious and a source
document, they are merged into aligned passages of maximal length
which are then reported as plagiarism detections [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ]. To improve
performance with respect to the granularity metric, we merge
adjacent suspicious and source fragments to report a single
plagiarism case. If the number of characters between two detected
fragments of source and suspicious documents are below a threshold t2
those fragments are considered as adjacent fragments and they are
merged to report a single plagiarism case.
3.3
      </p>
    </sec>
    <sec id="sec-7">
      <title>Extraction Filtering</title>
      <p>
        Given a set of aligned passages, a passage filter removes all
aligned passages that do not meet certain criteria. For example
dealing with overlapping passages or extremely short passages [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ].
      </p>
      <p>
        After retrieving potential plagiarized fragments in previous steps,
the sentences within a fragment are partitioned into non-overlapping
n-grams. For extraction filtering step we applied a method
similar to result filtering approach proposed in [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ] for excluding false
positive detections and improving precision. We used the dynamic
algorithm to find the alignments between the n-grams of the source
and suspicious texts and then the null alignments are excluded from
the start and end of the reported fragments.
4.
      </p>
      <p>
        The results of Persian detailed analysis subtask on PAN@FIRE
Persian Plagdet 2016 [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] using the training data is summarized in
Tables 1, 2 and 3. The experimentation platform TIRA is used for
our evaluations [
        <xref ref-type="bibr" rid="ref11 ref19">11, 19</xref>
        ].
      </p>
      <p>Parameters t1 and n are respectively the similarity threshold and
number of consecutive sentences described in Section 3.1. The
adjacency threshold t2, described in Section 3.2, is set to 1500
characters. The n value for n-gram creation described in Section 3.3
for each sentence is chosen to be 9, except for the final partition of
the sentence that may include fewer or more than 9 terms.</p>
      <p>
        The evaluation metrics are described in [
        <xref ref-type="bibr" rid="ref21">21</xref>
        ]. The evaluation is
based on macro-average precision and recall. Also, the
granularity measure characterizes the power of a detection algorithm. It
shows whether a plagiarism case is detected as a whole or in several
pieces. The Plagdet score is the combination of the three metrics,
precision, recall and granularity defined as follows for plagiarism
cases S and plagiarism detections R [
        <xref ref-type="bibr" rid="ref21">21</xref>
        ]:
plagdet(S; R) =
      </p>
      <p>F1
log(1 + granularity(S; R))
(1)</p>
      <p>The results of the tables show that the plagdet score improves by
decreasing the amount of the sentences in a fragment. The reason
could be that there are more short plagiarized texts than long ones in
the dataset. The increase in precision comparing different number
of sentences in a fragment using 0.3 for the value t1, could show
that decreasing the amount of sentences may have higher impact on
decreasing rather than increasing the false positive detections.</p>
      <p>We also analysed the effect of extraction filtering part of the
approach and we realized that without applying this stage for (t1 =
0.3, n = 3) the precision was 0.6026 and the plagdet score was
0.7087. This shows that this step improved the plagdet score about
14 percent.</p>
      <p>We used 0.3 for t1 and 5 sentences for parameter n (number of
consecutive sentences) for the test set. The results on the test set
are shown in Table 4.
5.</p>
    </sec>
    <sec id="sec-8">
      <title>CONCLUSION AND FUTURE WORK</title>
      <p>The task of plagiarism detection entails two sub-tasks, suspicious
candidate retrieval and pairwise document similarity. We introduce
a pairwise document analysis approach for Persian language. An
approach based on a vector space model is described for computing
pairwise document similarity. The principle of this approach is that
sentences containing more common words are likely to be a source
of plagiarism. The method contains three building blocks named
seeding, match merging and extraction filtering. Our work is tested
on a Persian corpora which offers evaluation environment to
evaluate plagiarism detection algorithms. The proposed approach is
insensitive to context reordering and could be applied in any
language.</p>
      <p>
        Detailed analysis subtask will be improved by expanding the
representative words of the document to find appropriate substitutes
for a word in the context in order to capture intelligent plagiarisms.
For this reason, there is requirement to minimize the risk of noises
that word expansion may cause. Other weighting schemas such as
tf idf weighting could be applied in comparing the vectors of the
texts. A complete plagiarism detection system could be developed
by adding a candidate selection [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ] step before pairwise document
analysis.
(t1 = 0.4, n = 5)
(t1 = 0.3, n = 5)
(t1 = 0.2, n = 5)
(t1 = 0.3, n = 3)
(t1 = 0.3, n = 2)
      </p>
    </sec>
    <sec id="sec-9">
      <title>Acknowledgement</title>
      <p>We would like to acknowledge the assistance and information
provided by Hossein Nasr Esfahani and Mahsa Shahshahani.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>I.</given-names>
            <surname>Androutsopoulos</surname>
          </string-name>
          and
          <string-name>
            <given-names>P.</given-names>
            <surname>Malakasiotis</surname>
          </string-name>
          .
          <article-title>A survey of paraphrasing and textual entailment methods</article-title>
          .
          <source>Journal of Artificial Intelligence Research</source>
          ,
          <volume>38</volume>
          :
          <fpage>135</fpage>
          -
          <lpage>187</lpage>
          ,
          <year>2009</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>H.</given-names>
            <surname>Asghari</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Mohtaj</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Fatemi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Faili</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Rosso</surname>
          </string-name>
          , and
          <string-name>
            <given-names>M.</given-names>
            <surname>Potthast</surname>
          </string-name>
          .
          <article-title>Algorithms and corpora for persian plagiarism detection: Overview of pan at fire 2016</article-title>
          . In Working notes of FIRE 2016 -
          <article-title>Forum for Information Retrieval Evaluation</article-title>
          ,
          <source>CEUR Workshop Proceedings. CEUR-WS.org</source>
          ,
          <year>2016</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>A.</given-names>
            <surname>Barrón-Cedeño</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Rosso</surname>
          </string-name>
          , and J.
          <string-name>
            <surname>-M. Benedí</surname>
          </string-name>
          .
          <article-title>Reducing the plagiarism detection search space on the basis of the kullback-leibler distance</article-title>
          .
          <source>In Computational Linguistics and Intelligent Text Processing</source>
          , pages
          <fpage>523</fpage>
          -
          <lpage>534</lpage>
          . Springer,
          <year>2009</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>A.</given-names>
            <surname>Barrón-Cedeno</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Vila</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. A.</given-names>
            <surname>Martí</surname>
          </string-name>
          , and
          <string-name>
            <given-names>P.</given-names>
            <surname>Rosso</surname>
          </string-name>
          .
          <article-title>Plagiarism meets paraphrasing: Insights for the next generation in automatic plagiarism detection</article-title>
          .
          <source>Computational Linguistics</source>
          ,
          <volume>39</volume>
          (
          <issue>4</issue>
          ):
          <fpage>917</fpage>
          -
          <lpage>947</lpage>
          ,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>S.</given-names>
            <surname>Brin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Davis</surname>
          </string-name>
          , and
          <string-name>
            <given-names>H.</given-names>
            <surname>Garcia-Molina</surname>
          </string-name>
          .
          <article-title>Copy detection mechanisms for digital documents</article-title>
          .
          <source>In ACM SIGMOD Record</source>
          , volume
          <volume>24</volume>
          , pages
          <fpage>398</fpage>
          -
          <lpage>409</lpage>
          . ACM,
          <year>1995</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>C.-Y.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.-Y.</given-names>
            <surname>Yeh</surname>
          </string-name>
          , and
          <string-name>
            <given-names>H.-R.</given-names>
            <surname>Ke</surname>
          </string-name>
          .
          <article-title>Plagiarism detection using rouge and wordnet</article-title>
          .
          <source>Journal of Computing</source>
          , pages
          <fpage>34</fpage>
          -
          <lpage>44</lpage>
          ,
          <year>2010</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>M.</given-names>
            <surname>Chong</surname>
          </string-name>
          and
          <string-name>
            <given-names>L.</given-names>
            <surname>Specia</surname>
          </string-name>
          .
          <article-title>Lexical generalisation for word-level matching in plagiarism detection</article-title>
          .
          <source>In RANLP</source>
          , pages
          <fpage>704</fpage>
          -
          <lpage>709</lpage>
          ,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>P.</given-names>
            <surname>Clough</surname>
          </string-name>
          and
          <string-name>
            <given-names>M.</given-names>
            <surname>Stevenson</surname>
          </string-name>
          .
          <article-title>Developing a corpus of plagiarised short answers</article-title>
          .
          <source>Language Resources and Evaluation</source>
          ,
          <volume>45</volume>
          (
          <issue>1</issue>
          ):
          <fpage>5</fpage>
          -
          <lpage>24</lpage>
          ,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>N.</given-names>
            <surname>Ehsan</surname>
          </string-name>
          and
          <string-name>
            <given-names>A.</given-names>
            <surname>Shakery</surname>
          </string-name>
          .
          <article-title>Candidate document retrieval for cross-lingual plagiarism detection using two-level proximity information</article-title>
          .
          <source>Information Processing &amp; Management</source>
          ,
          <volume>52</volume>
          (
          <issue>6</issue>
          ):
          <fpage>1004</fpage>
          -
          <lpage>1017</lpage>
          ,
          <year>2016</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>N.</given-names>
            <surname>Ehsan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F. W.</given-names>
            <surname>Tompa</surname>
          </string-name>
          ,
          <article-title>and</article-title>
          <string-name>
            <given-names>A.</given-names>
            <surname>Shakery</surname>
          </string-name>
          .
          <article-title>Using a dictionary and n-gram alignment to improve fine-grained cross-language plagiarism detection</article-title>
          .
          <source>In Proceedings of the 2016 ACM Symposium on Document Engineering</source>
          , pages
          <fpage>59</fpage>
          -
          <lpage>68</lpage>
          . ACM,
          <year>2016</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>T.</given-names>
            <surname>Gollub</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Stein</surname>
          </string-name>
          , and
          <string-name>
            <given-names>S.</given-names>
            <surname>Burrows</surname>
          </string-name>
          . Ousting Ivory Tower Research:
          <article-title>Towards a Web Framework for Providing Experiments as a Service</article-title>
          . In B.
          <string-name>
            <surname>Hersh</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Callan</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          <string-name>
            <surname>Maarek</surname>
          </string-name>
          , and M. Sanderson, editors,
          <source>35th International ACM Conference on Research and Development in Information Retrieval (SIGIR 12)</source>
          , pages
          <fpage>1125</fpage>
          -
          <lpage>1126</lpage>
          . ACM, Aug.
          <year>2012</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>C.</given-names>
            <surname>Grozea</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Gehl</surname>
          </string-name>
          , and
          <string-name>
            <given-names>M.</given-names>
            <surname>Popescu</surname>
          </string-name>
          . Encoplot:
          <article-title>Pairwise sequence matching in linear time applied to plagiarism detection</article-title>
          .
          <source>In 3rd PAN Workshop</source>
          . Uncovering Plagiarism,
          <source>Authorship and Social Software Misuse</source>
          , pages
          <fpage>10</fpage>
          -
          <lpage>18</lpage>
          ,
          <year>2009</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>G. S.</given-names>
            <surname>Manku</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Jain</surname>
          </string-name>
          ,
          <article-title>and</article-title>
          <string-name>
            <given-names>A. Das</given-names>
            <surname>Sarma</surname>
          </string-name>
          .
          <article-title>Detecting near-duplicates for web crawling</article-title>
          .
          <source>In Proceedings of the 16th international conference on World Wide Web</source>
          , pages
          <fpage>141</fpage>
          -
          <lpage>150</lpage>
          . ACM,
          <year>2007</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14] S. Meyer zu Eißen and
          <string-name>
            <given-names>B.</given-names>
            <surname>Stein</surname>
          </string-name>
          .
          <article-title>Intrinsic Plagiarism Detection</article-title>
          .
          <source>In Advances in Information Retrieval. 28th European Conference on IR Research (ECIR 06)</source>
          , volume 3936
          <source>LNCS of Lecture Notes in Computer Science</source>
          , pages
          <fpage>565</fpage>
          -
          <lpage>569</lpage>
          , Berlin Heidelberg New York,
          <year>2006</year>
          . Springer.
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <given-names>G.</given-names>
            <surname>Oberreuter</surname>
          </string-name>
          and
          <string-name>
            <given-names>J. D.</given-names>
            <surname>Velásquez</surname>
          </string-name>
          .
          <article-title>Text mining applied to plagiarism detection: The use of words for detecting deviations in the writing style</article-title>
          .
          <source>Expert Systems with Applications</source>
          ,
          <volume>40</volume>
          (
          <issue>9</issue>
          ):
          <fpage>3756</fpage>
          -
          <lpage>3763</lpage>
          ,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <given-names>R. C.</given-names>
            <surname>Pereira</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V. P.</given-names>
            <surname>Moreira</surname>
          </string-name>
          , and
          <string-name>
            <given-names>R.</given-names>
            <surname>Galante</surname>
          </string-name>
          .
          <article-title>A new approach for cross-language plagiarism analysis</article-title>
          .
          <source>In Multilingual and Multimodal Information Access Evaluation</source>
          , volume
          <volume>6360</volume>
          , pages
          <fpage>15</fpage>
          -
          <lpage>26</lpage>
          .
          <year>2010</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <given-names>M.</given-names>
            <surname>Potthast</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Barrón-Cedeño</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Stein</surname>
          </string-name>
          , and
          <string-name>
            <given-names>P.</given-names>
            <surname>Rosso</surname>
          </string-name>
          .
          <article-title>Cross-language plagiarism detection</article-title>
          .
          <source>Language Resources and Evaluation</source>
          ,
          <volume>45</volume>
          (
          <issue>1</issue>
          ):
          <fpage>45</fpage>
          -
          <lpage>62</lpage>
          ,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [18]
          <string-name>
            <given-names>M.</given-names>
            <surname>Potthast</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Gollub</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Hagen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Kiesel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Michel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Oberländer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Tippmann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Barrón-Cedeño</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Gupta</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Rosso</surname>
          </string-name>
          , et al.
          <article-title>Overview of the 4th international competition on plagiarism detection</article-title>
          .
          <source>In CLEF (Online Working Notes/Labs/Workshop)</source>
          ,
          <year>2012</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [19]
          <string-name>
            <given-names>M.</given-names>
            <surname>Potthast</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Gollub</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Rangel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Rosso</surname>
          </string-name>
          , E. Stamatatos, and
          <string-name>
            <given-names>B.</given-names>
            <surname>Stein</surname>
          </string-name>
          .
          <article-title>Improving the Reproducibility of PAN's Shared Tasks: Plagiarism Detection, Author Identification, and Author Profiling</article-title>
          . In E. Kanoulas,
          <string-name>
            <given-names>M.</given-names>
            <surname>Lupu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Clough</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Sanderson</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Hall</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Hanbury</surname>
          </string-name>
          , and E. Toms, editors,
          <source>Information Access Evaluation meets Multilinguality, Multimodality, and Visualization. 5th International Conference of the CLEF Initiative (CLEF 14)</source>
          , pages
          <fpage>268</fpage>
          -
          <lpage>299</lpage>
          , Berlin Heidelberg New York, Sept.
          <year>2014</year>
          . Springer.
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          [20]
          <string-name>
            <given-names>M.</given-names>
            <surname>Potthast</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Stein</surname>
          </string-name>
          , and
          <string-name>
            <given-names>M.</given-names>
            <surname>Anderka</surname>
          </string-name>
          .
          <article-title>A wikipedia-based multilingual retrieval model</article-title>
          .
          <source>In Advances in Information Retrieval</source>
          , pages
          <fpage>522</fpage>
          -
          <lpage>530</lpage>
          .
          <year>2008</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          [21]
          <string-name>
            <given-names>M.</given-names>
            <surname>Potthast</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Stein</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Barrón-Cedeño</surname>
          </string-name>
          , and
          <string-name>
            <given-names>P.</given-names>
            <surname>Rosso</surname>
          </string-name>
          .
          <article-title>An evaluation framework for plagiarism detection</article-title>
          .
          <source>In Proceedings of the 23rd International Conference on Computational Linguistics: Posters</source>
          , pages
          <fpage>997</fpage>
          -
          <lpage>1005</lpage>
          . Association for Computational Linguistics,
          <year>2010</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          [22]
          <string-name>
            <given-names>S.</given-names>
            <surname>Schleimer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D. S.</given-names>
            <surname>Wilkerson</surname>
          </string-name>
          ,
          <article-title>and</article-title>
          <string-name>
            <given-names>A.</given-names>
            <surname>Aiken</surname>
          </string-name>
          .
          <article-title>Winnowing: local algorithms for document fingerprinting</article-title>
          .
          <source>In Proceedings of the 2003 ACM SIGMOD international conference on Management of data</source>
          , pages
          <fpage>76</fpage>
          -
          <lpage>85</lpage>
          . ACM,
          <year>2003</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          [23]
          <string-name>
            <given-names>A.</given-names>
            <surname>Si</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H. V.</given-names>
            <surname>Leong</surname>
          </string-name>
          , and
          <string-name>
            <given-names>R. W.</given-names>
            <surname>Lau</surname>
          </string-name>
          .
          <article-title>Check: a document plagiarism detection system</article-title>
          .
          <source>In Proceedings of the 1997 ACM symposium on Applied computing</source>
          , pages
          <fpage>70</fpage>
          -
          <lpage>77</lpage>
          . ACM,
          <year>1997</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          [24]
          <string-name>
            <given-names>E.</given-names>
            <surname>Stamatatos</surname>
          </string-name>
          .
          <article-title>Plagiarism detection using stopword n-grams</article-title>
          .
          <source>Journal of the American Society for Information Science and Technology</source>
          ,
          <volume>62</volume>
          (
          <issue>12</issue>
          ):
          <fpage>2512</fpage>
          -
          <lpage>2527</lpage>
          ,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>