Content similarity detection

{{Short description|Process of detecting plagiarism and/or copyright infringement}}

{{Use dmy dates|date=May 2017}}

Plagiarism detection or content similarity detection is the process of locating instances of plagiarism or copyright infringement within a work or document. The widespread use of computers and the advent of the Internet have made it easier to plagiarize the work of others.{{Cite web |title=Plagiarism, prevention, deterrence and detection |url=https://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.107.178&rep=rep1&type=pdf |url-status=dead |access-date=2022-11-11|archive-url=https://web.archive.org/web/20210418111409/http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.107.178&rep=rep1&type=pdf |archive-date=18 April 2021 |last1=Culwin |first1=Fintan |last2=Lancaster |first2=Thomas |year=2001 | citeseerx=10.1.1.107.178 |via=The Higher Education Academy}}{{cbignore}}Bretag, T., & Mahmud, S. (2009). A model for determining student plagiarism: Electronic detection and academic judgement. Journal of University Teaching & Learning Practice, 6(1). Retrieved from http://ro.uow.edu.au/jutlp/vol6/iss1/6

Detection of plagiarism can be undertaken in a variety of ways. Human detection is the most traditional form of identifying plagiarism from written work. This can be a lengthy and time-consuming task for the reader and can also result in inconsistencies in how plagiarism is identified within an organization.Macdonald, R., & Carroll, J. (2006). Plagiarism—a complex issue requiring a holistic institutional approach. Assessment & Evaluation in Higher Education, 31(2), 233–245. {{doi|10.1080/02602930500262536}} Text-matching software (TMS), which is also referred to as "plagiarism detection software" or "anti-plagiarism" software, has become widely available, in the form of both commercially available products as well as open-source{{Example needed|s|date=November 2020}} software. TMS does not actually detect plagiarism per se, but instead finds specific passages of text in one document that match text in another document.

Software-assisted plagiarism detection

{{Main|Artificial intelligence content detection}}

Computer-assisted plagiarism detection is an Information retrieval (IR) task supported by specialized IR systems, which is referred to as a plagiarism detection system (PDS) or document similarity detection system. A 2019 systematic literature review{{Cite journal|last1=Foltýnek|first1=Tomáš|last2=Meuschke|first2=Norman|last3=Gipp|first3=Bela|date=2019-10-16|title=Academic Plagiarism Detection: A Systematic Literature Review|journal=ACM Computing Surveys|language=en|volume=52|issue=6|pages=1–42|doi=10.1145/3345317|doi-access=free}} presents an overview of state-of-the-art plagiarism detection methods.

=In text documents=

Systems for text similarity detection implement one of two generic detection approaches, one being external, the other being intrinsic.

External detection systems compare a suspicious document with a reference collection, which is a set of documents assumed to be genuine.

Based on a chosen document model and predefined similarity criteria, the detection task is to retrieve all documents that contain text that is similar to a degree above a chosen threshold to text in the suspicious document.

Intrinsic PDSes solely analyze the text to be evaluated without performing comparisons to external documents. This approach aims to recognize changes in the unique writing style of an author as an indicator for potential plagiarism.{{cite book |last1=Bensalem |first1=Imene |title=Plagiarism Detection: A focus on the Intrinsic Approach and the Evaluation in the Arabic Language |date=2020 |publisher=Constantine 2 University |url=http://personales.upv.es/prosso/resources/BensalemPhD.pdf |format=PhD thesis |doi=10.13140/RG.2.2.25727.84641 |chapter=Intrinsic Plagiarism Detection: a Survey}}

PDSes are not capable of reliably identifying plagiarism without human judgment. Similarities and writing style features are computed with the help of predefined document models and might represent false positives.

==Effectiveness of those tools in higher education settings==

{{one source|section|date=December 2017}}

A study was conducted to test the effectiveness of similarity detection software in a higher education setting. One part of the study assigned one group of students to write a paper. These students were first educated about plagiarism and informed that their work was to be run through a content similarity detection system. A second group of students was assigned to write a paper without any information about plagiarism. The researchers expected to find lower rates in group one but found roughly the same rates of plagiarism in both groups.{{cite journal|last1=Youmans|first1=Robert J.|s2cid=144143548|title=Does the adoption of plagiarism-detection software in higher education reduce plagiarism?|journal=Studies in Higher Education|date=November 2011|volume=36|issue=7|pages=749–761|doi=10.1080/03075079.2010.523457}}

==Approaches==

The figure below represents a classification of all detection approaches currently in use for computer-assisted content similarity detection. The approaches are characterized by the type of similarity assessment they undertake: global or local. Global similarity assessment approaches use the characteristics taken from larger parts of the text or the document as a whole to compute similarity, while local methods only examine pre-selected text segments as input.{{Citation needed|date=December 2023}}

[[File:PDS Classification.png|thumb|center|upright=2.0|Classification of computer-assisted plagiarism detection methods{{Citation |first1=Norman |last1=Meuschke |first2=Bela |last2=Gipp |title=State of the Art in Detecting Academic Plagiarism |date=2013 |url=http://sciplore.org/wp-content/papercite-data/pdf/meuschke13.pdf |journal=International Journal for Educational Integrity |volume=9 |issue=1 |pages=50–71 |doi=10.5281/zenodo.3482941 |access-date=2024-02-15

|language=en }}]]

===Fingerprinting===

Fingerprinting is currently the most widely applied approach to content similarity detection. This method forms representative digests of documents by selecting a set of multiple substrings (n-grams) from them. The sets represent the fingerprints and their elements are called minutiae.

A suspicious document is checked for plagiarism by computing its fingerprint and querying minutiae with a precomputed index of fingerprints for all documents of a reference collection. Minutiae matching with those of other documents indicate shared text segments and suggest potential plagiarism if they exceed a chosen similarity threshold. Computational resources and time are limiting factors to fingerprinting, which is why this method typically only compares a subset of minutiae to speed up the computation and allow for checks in very large collection, such as the Internet.

===String matching===

String matching is a prevalent approach used in computer science. When applied to the problem of plagiarism detection, documents are compared for verbatim text overlaps. Numerous methods have been proposed to tackle this task, of which some have been adapted to external plagiarism detection. Checking a suspicious document in this setting requires the computation and storage of efficiently comparable representations for all documents in the reference collection to compare them pairwise. Generally, suffix document models, such as suffix trees or suffix vectors, have been used for this task. Nonetheless, substring matching remains computationally expensive, which makes it a non-viable solution for checking large collections of documents.

===Bag of words===

Bag of words analysis represents the adoption of vector space retrieval, a traditional IR concept, to the domain of content similarity detection. Documents are represented as one or multiple vectors, e.g. for different document parts, which are used for pair wise similarity computations. Similarity computation may then rely on the traditional cosine similarity measure, or on more sophisticated similarity measures.

===Citation analysis===

Citation-based plagiarism detection (CbPD) relies on citation analysis, and is the only approach to plagiarism detection that does not rely on the textual similarity. CbPD examines the citation and reference information in texts to identify similar patterns in the citation sequences. As such, this approach is suitable for scientific texts, or other academic documents that contain citations. Citation analysis to detect plagiarism is a relatively young concept. It has not been adopted by commercial software, but a first prototype of a citation-based plagiarism detection system exists. Similar order and proximity of citations in the examined documents are the main criteria used to compute citation pattern similarities. Citation patterns represent subsequences non-exclusively containing citations shared by the documents compared. Factors, including the absolute number or relative fraction of shared citations in the pattern, as well as the probability that citations co-occur in a document are also considered to quantify the patterns' degree of similarity.{{citation

| last1=Gipp

| first1=Bela

| last2=Meuschke

| first2=Norman

| last3=Beel

| first3=Jöran

| s2cid=3683238

| contribution=Comparative Evaluation of Text- and Citation-based Plagiarism Detection Approaches using GuttenPlag

| date=June 2011

| title=Proceedings of 11th ACM/IEEE-CS Joint Conference on Digital Libraries (JCDL'11)

| pages=255–258

| publisher=ACM

| isbn=978-1-4503-0744-4

| doi=10.1145/1998076.1998124

| url=http://www.sciplore.org/publications/2011-Comparative_Evaluation_of_Text-_and_Citation-based_Plagiarism_Detection_Approaches_using_GuttenPlag.pdf

| citeseerx=10.1.1.736.4865

| access-date=7 October 2011

| archive-url=https://web.archive.org/web/20120425044618/http://www.sciplore.org/publications/2011-Comparative_Evaluation_of_Text-_and_Citation-based_Plagiarism_Detection_Approaches_using_GuttenPlag.pdf

| archive-date=25 April 2012

| url-status=dead

}}

===Stylometry===

Stylometry subsumes statistical methods for quantifying an author's unique writing style and is mainly used for authorship attribution or intrinsic plagiarism detection. Detecting plagiarism by authorship attribution requires checking whether the writing style of the suspicious document, which is written supposedly by a certain author, matches with that of a corpus of documents written by the same author. Intrinsic plagiarism detection, on the other hand, uncovers plagiarism based on internal evidences in the suspicious document without comparing it with other documents. This is performed by constructing and comparing stylometric models for different text segments of the suspicious document, and passages that are stylistically different from others are marked as potentially plagiarized/infringed. Although they are simple to extract, character n-grams are proven to be among the best stylometric features for intrinsic plagiarism detection.{{cite journal |last1=Bensalem |first1=Imene |last2=Rosso |first2=Paolo |last3=Chikhi |first3=Salim |title=On the use of character n-grams as the only intrinsic evidence of plagiarism |journal=Language Resources and Evaluation |year=2019 |volume=53 |issue=3 |pages=363–396 |doi=10.1007/s10579-019-09444-w|s2cid=86630897 |hdl=10251/159151 |hdl-access=free }}

===Neural networks===

More recent approaches to assess content similarity using neural networks have achieved significantly greater accuracy, but come at great computational cost.{{Cite arXiv |title=Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks |eprint=1908.10084 |last1=Reimers |first1=Nils |last2=Gurevych |first2=Iryna |year=2019 |class=cs.CL }} Traditional neural network approaches embed both pieces of content into semantic vector embeddings to calculate their similarity, which is often their cosine similarity. More advanced methods perform end-to-end prediction of similarity or classifications using the Transformer architecture.{{Cite journal |last1=Lan |first1=Wuwei |last2=Xu |first2=Wei |date=2018 |title=Neural Network Models for Paraphrase Identification, Semantic Textual Similarity, Natural Language Inference, and Question Answering |url=https://aclanthology.org/C18-1328 |journal=Proceedings of the 27th International Conference on Computational Linguistics |location=Santa Fe, New Mexico, USA |publisher=Association for Computational Linguistics |pages=3890–3902|arxiv=1806.04330 }}{{Citation |last1=Wahle |first1=Jan Philip |title=Identifying Machine-Paraphrased Plagiarism |date=2022 |url=https://link.springer.com/10.1007/978-3-030-96957-8_34 |work=Information for a Better World: Shaping the Global Future |volume=13192 |pages=393–413 |editor-last=Smits |editor-first=Malte |place=Cham |publisher=Springer International Publishing |language=en |doi=10.1007/978-3-030-96957-8_34 |isbn=978-3-030-96956-1 |access-date=2022-10-06 |last2=Ruas |first2=Terry |last3=Foltýnek |first3=Tomáš |last4=Meuschke |first4=Norman |last5=Gipp |first5=Bela|series=Lecture Notes in Computer Science |arxiv=2103.11909 |s2cid=232307572 }} Paraphrase detection particularly benefits from highly parameterized pre-trained models.

==Performance==

Comparative evaluations of content similarity detection systems indicate that their performance depends on the type of plagiarism present (see figure). Except for citation pattern analysis, all detection approaches rely on textual similarity. It is therefore symptomatic that detection accuracy decreases the more plagiarism cases are obfuscated.

File:PD Methods Detection Performance.png

Literal copies, a.k.a. copy and paste plagiarism or blatant copyright infringement, or modestly disguised plagiarism cases can be detected with high accuracy by current external PDS if the source is accessible to the software. In particular, substring matching procedures achieve good performance for copy and paste plagiarism, since they commonly use lossless document models, such as suffix trees. The performance of systems using fingerprinting or bag of words analysis in detecting copies depends on the information loss incurred by the document model used. By applying flexible chunking and selection strategies, they are better capable of detecting moderate forms of disguised plagiarism when compared to substring matching procedures.

Intrinsic plagiarism detection using stylometry can overcome the boundaries of textual similarity to some extent by comparing linguistic similarity. Given that the stylistic differences between plagiarized and original segments are significant and can be identified reliably, stylometry can help in identifying disguised and paraphrased plagiarism. Stylometric comparisons are likely to fail in cases where segments are strongly paraphrased to the point where they more closely resemble the personal writing style of the plagiarist or if a text was compiled by multiple authors. The results of the International Competitions on Plagiarism Detection held in 2009, 2010 and 2011, as well as experiments performed by Stein, indicate that stylometric analysis seems to work reliably only for document lengths of several thousand or tens of thousands of words, which limits the applicability of the method to computer-assisted plagiarism detection settings.

An increasing amount of research is performed on methods and systems capable of detecting translated plagiarism. Currently, cross-language plagiarism detection (CLPD) is not viewed as a mature technology and respective systems have not been able to achieve satisfying detection results in practice.

Citation-based plagiarism detection using citation pattern analysis is capable of identifying stronger paraphrases and translations with higher success rates when compared to other detection approaches, because it is independent of textual characteristics. However, since citation-pattern analysis depends on the availability of sufficient citation information, it is limited to academic texts. It remains inferior to text-based approaches in detecting shorter plagiarized passages, which are typical for cases of copy-and-paste or shake-and-paste plagiarism; the latter refers to mixing slightly altered fragments from different sources.

==Software==

The design of content similarity detection software for use with text documents is characterized by a number of factors:{{Cite web|url=https://textgears.com/read/about-plagiarism-checking|title=How to check the text for plagiarism? And how to increase uniqueness?|website=TextGears}}

class="wikitable"
Factor

! Description and alternatives

Scope of search

| In the public internet, using search engines / Institutional databases / Local, system-specific database.{{citation needed|date=September 2011}}

Analysis time

| Delay between the time a document is submitted and the time when results are made available.{{citation needed|date=September 2011}}

Document capacity / Batch processing

| Number of documents the system can process per unit of time.{{citation needed|date=September 2011}}

Check intensity

| How often and for which types of document fragments (paragraphs, sentences, fixed-length word sequences) does the system query external resources, such as search engines.

Comparison algorithm type

| The algorithms that define the way the system uses to compare documents against each other.{{citation needed|date=September 2011}}

Precision and recall

| Number of documents correctly flagged as plagiarized compared to the total number of flagged documents, and to the total number of documents that were actually plagiarized. High precision means that few false positives were found, and high recall means that few false negatives were left undetected.{{citation needed|date=September 2011}}

Most large-scale plagiarism detection systems use large, internal databases (in addition to other resources) that grow with each additional document submitted for analysis. However, this feature is considered by some as a violation of student copyright.{{citation needed|date=September 2011}}

=In source code=

Plagiarism in computer source code is also frequent, and requires different tools than those used for text comparisons in document. Significant research has been dedicated to academic source-code plagiarism.[http://www.ics.heacademy.ac.uk/resources/assessment/plagiarism/research_sourcecode.html "Plagiarism Prevention and Detection - On-line Resources on Source Code Plagiarism"] {{Webarchive|url=https://web.archive.org/web/20121115105655/http://www.ics.heacademy.ac.uk/resources/assessment/plagiarism/research_sourcecode.html |date=15 November 2012 }}. Higher Education Academy, University of Ulster.

A distinctive aspect of source-code plagiarism is that there are no essay mills, such as can be found in traditional plagiarism. Since most programming assignments expect students to write programs with very specific requirements, it is very difficult to find existing programs that already meet them. Since integrating external code is often harder than writing it from scratch, most plagiarizing students choose to do so from their peers.

According to Roy and Cordy,Roy, Chanchal Kumar;Cordy, James R. (26 September 2007).[http://research.cs.queensu.ca/TechReports/Reports/2007-541.pdf "A Survey on Software Clone Detection Research"]. School of Computing, Queen's University, Canada. source-code similarity detection algorithms can be classified as based on either

  • Strings – look for exact textual matches of segments, for instance five-word runs. Fast, but can be confused by renaming identifiers.
  • Tokens – as with strings, but using a lexer to convert the program into tokens first. This discards whitespace, comments, and identifier names, making the system more robust against simple text replacements. Most academic plagiarism detection systems work at this level, using different algorithms to measure the similarity between token sequences.
  • Parse Trees – build and compare parse trees. This allows higher-level similarities to be detected. For instance, tree comparison can normalize conditional statements, and detect equivalent constructs as similar to each other.
  • Program Dependency Graphs (PDGs) – a PDG captures the actual flow of control in a program, and allows much higher-level equivalences to be located, at a greater expense in complexity and calculation time.
  • Metrics – metrics capture 'scores' of code segments according to certain criteria; for instance, "the number of loops and conditionals", or "the number of different variables used". Metrics are simple to calculate and can be compared quickly, but can also lead to false positives: two fragments with the same scores on a set of metrics may do entirely different things.
  • Hybrid approaches – for instance, parse trees + suffix trees can combine the detection capability of parse trees with the speed afforded by suffix trees, a type of string-matching data structure.

The previous classification was developed for code refactoring, and not for academic plagiarism detection (an important goal of refactoring is to avoid duplicate code, referred to as code clones in the literature). The above approaches are effective against different levels of similarity; low-level similarity refers to identical text, while high-level similarity can be due to similar specifications. In an academic setting, when all students are expected to code to the same specifications, functionally equivalent code (with high-level similarity) is entirely expected, and only low-level similarity is considered as proof of cheating.

Difference between Plagiarism and Copyright

Plagiarism and copyright are essential concepts in academic and creative writing that writers, researchers, and students have to understand. Although they may sound similar, they are not; different strategies can be used to address each of them.{{Cite web |last=Prasad |first=Suhani |title=Plagiarism and Copyright |url=https://www.checkforplag.com/Plagiarism-and-copyright |website=CheckForPlag}}

== Algorithms ==

{{excerpt|Duplicate code|Detecting duplicate code}}

Complications with the use of text-matching software for plagiarism detection

Various complications have been documented with the use of text-matching software when used for plagiarism detection. One of the more prevalent concerns documented centers on the issue of intellectual property rights. The basic argument is that materials must be added to a database in order for the TMS to effectively determine a match, but adding users' materials to such a database may infringe on their intellectual property rights.{{Cite journal |last=Vie |first=Stephanie |date=2013-03-01 |title=A Pedagogy of Resistance Toward Plagiarism Detection Technologies |url=https://www.sciencedirect.com/science/article/abs/pii/S8755461513000030 |journal=Computers and Composition |series=Writing on the Frontlines |volume=30 |issue=1 |pages=3–15 |doi=10.1016/j.compcom.2013.01.002 |issn=8755-4615}}{{Cite journal |last1=Gillis |first1=Kathleen |last2=Lang |first2=Susan |last3=Norris |first3=Monica |last4=Palmer |first4=Laura |date=November 2009 |title=Electronic Plagiarism Checkers: Barriers to Developing an Academic Voice |url=https://wac.colostate.edu/docs/journal/vol20/gillis.pdf |journal=The WAC Journal |volume=20|pages=51–62 |doi=10.37514/WAC-J.2009.20.1.04 }} The issue has been raised in a number of court cases.

An additional complication with the use of TMS is that the software finds only precise matches to other text. It does not pick up poorly paraphrased work, for example, or the practice of plagiarizing by use of sufficient word substitutions to elude detection software, which is known as rogeting. It also cannot evaluate whether the paraphrase genuinely reflects an original understanding or is an attempt to bypass detection. {{Cite journal |last1=Canzonetta |first1=Jordan |last2=Kannan |first2=Vani |date=2016 |title=Globalizing Plagiarism & Writing Assessment: A Case Study of Turnitin |url=https://escholarship.org/content/qt5vq519dr/qt5vq519dr.pdf?t=r071lb&v=lg |journal=UC Davis Journal of Writing Assessment |volume=9 |issue=2}}

Another complication with TMS is its tendency to flag much more content than necessary, including legitimate citations and paraphrasing, making it difficult to find real cases of plagiarism. This issue arises because TMS algorithms mainly look at surface-level text similarities without considering the context of the writing.{{Cite journal |last=Stapleton |first=Paul |date=2012-06-01 |title=Gauging the effectiveness of anti-plagiarism software: An empirical study of second language graduate writers |url=https://www.sciencedirect.com/science/article/abs/pii/S1475158511000749 |journal=Journal of English for Academic Purposes |volume=11 |issue=2 |pages=125–133 |doi=10.1016/j.jeap.2011.10.003 |issn=1475-1585}} Educators have raised concerns that reliance on TMS may shift focus away from teaching proper citation and writing skills, and may create an oversimplified view of plagiarism that disregards the nuances of student writing.{{Cite journal |last=Purdy |first=James P |date=2005 |title=Calling Off the Hounds: Technology and the Visibility of Plagiarism |url=https://muse.jhu.edu/article/182339 |journal=Pedagogy |volume=5 |issue=2 |pages=275–296 |doi=10.1215/15314200-5-2-275 |issn=1533-6255}} As a result, scholars argue that these false positives can cause fear in students and discourage them from using their authentic voice.

See also

  • {{Annotated link |Artificial intelligence detection software}}
  • :Category:Plagiarism detectors
  • {{Annotated link |Comparison of anti-plagiarism software}}
  • {{Annotated link |Locality-sensitive hashing}}
  • {{Annotated link |Nearest neighbor search}}
  • {{Annotated link |Paraphrase detection}}
  • {{Section link|Kolmogorov complexity|Compression}} – used to estimate similarity between token sequences in several systems
  • {{Annotated link |Video copy detection}}

References

{{reflist|30em|refs=

{{citation

| last1=Stein

| first1=Benno

| last2=Koppel

| first2=Moshe

| last3=Stamatatos

| first3=Efstathios

| s2cid=6379659

| title=Plagiarism Analysis, Authorship Identification, and Near-Duplicate Detection PAN'07

| journal=SIGIR Forum

| volume=41

| issue=2

| pages=68

| date=Dec 2007

| doi=10.1145/1328964.1328976

| url=http://www.uni-weimar.de/medien/webis/publications/papers/stein_2007o.pdf

| access-date=7 October 2011

| archive-url=https://web.archive.org/web/20120402050840/http://www.uni-weimar.de/medien/webis/publications/papers/stein_2007o.pdf

| archive-date=2 April 2012

| url-status=dead

| df=dmy-all

}}

{{citation

|last1 = Potthast

|first1 = Martin

|last2 = Stein

|first2 = Benno

|last3 = Eiselt

|first3 = Andreas

|last4 = Barrón-Cedeño

|first4 = Alberto

|last5 = Rosso

|first5 = Paolo

|contribution = Overview of the 1st International Competition on Plagiarism Detection

|year = 2009

|title = PAN09 - 3rd Workshop on Uncovering Plagiarism, Authorship and Social Software Misuse and 1st International Competition on Plagiarism Detection

|series = CEUR Workshop Proceedings

|volume = 502

|pages = 1–9

|issn = 1613-0073

|url = http://www.uni-weimar.de/medien/webis/research/events/pan-09/pan09-papers-final/potthast09-overview-first-international-competition-plagiarism-detection.pdf

|url-status = dead

|archiveurl = https://web.archive.org/web/20120402050919/http://www.uni-weimar.de/medien/webis/research/events/pan-09/pan09-papers-final/potthast09-overview-first-international-competition-plagiarism-detection.pdf

|archivedate = 2 April 2012

|df = dmy-all

}}

{{citation

| last1=Stein

| first1=Benno

| last2=Meyer zu Eissen

| first2=Sven

| last3=Potthast

| first3=Martin

| s2cid=3898511

| contribution=Strategies for Retrieving Plagiarized Documents

| year=2007

| title=Proceedings 30th Annual International ACM SIGIR Conference

| pages=825–826

| publisher=ACM

| isbn=978-1-59593-597-7

| doi=10.1145/1277741.1277928

| url=http://www.uni-weimar.de/medien/webis/publications/papers/stein_2007f.pdf

| access-date=7 October 2011

| archive-url=https://web.archive.org/web/20120402050937/http://www.uni-weimar.de/medien/webis/publications/papers/stein_2007f.pdf

| archive-date=2 April 2012

| url-status=dead

| df=dmy-all

}}

{{citation

| last1=Meyer zu Eissen

| first1=Sven

| last2=Stein

| first2=Benno

| contribution=Intrinsic Plagiarism Detection

| year=2006

| title=Advances in Information Retrieval 28th European Conference on IR Research, ECIR 2006, London, UK, April 10–12, 2006 Proceedings

| series=Lecture Notes in Computer Science

| volume=3936

| pages=565–569

| publisher=Springer

| doi=10.1007/11735106_66

| url=http://www.uni-weimar.de/medien/webis/publications/papers/stein_2006d.pdf

| isbn=978-3-540-33347-0

| citeseerx=10.1.1.110.5366

| access-date=7 October 2011

| archive-url=https://web.archive.org/web/20120402051009/http://www.uni-weimar.de/medien/webis/publications/papers/stein_2006d.pdf

| archive-date=2 April 2012

| url-status=dead

| df=dmy-all

}}

{{citation

| last1=Bao

| first1=Jun-Peng

| last2=Malcolm

| first2=James A.

| contribution=Text similarity in academic conference papers

| year=2006

| title=2nd International Plagiarism Conference Proceedings

| publisher=Northumbria University Press

| url=http://www.plagiarismadvice.org/images/stories/old_site/media/2006papers/JunPengBao.pdf

| access-date=7 October 2011

| archive-url=https://web.archive.org/web/20180916130353/http://www.plagiarismadvice.org/images/stories/old_site/media/2006papers/JunPengBao.pdf

| archive-date=16 September 2018

| url-status=usurped

}}

{{citation

|last = Clough

|first = Paul

|title = Plagiarism in natural and programming languages an overview of current tools and technologies

|year = 2000

|type = Technical Report

|publisher = Department of Computer Science, University of Sheffield

|url = http://www.ir.shef.ac.uk/cloughie/papers/plagiarism2000.pdf

|url-status = dead

|archiveurl = https://web.archive.org/web/20110818161514/http://ir.shef.ac.uk/cloughie/papers/plagiarism2000.pdf

|archivedate = 18 August 2011

|df = dmy-all

}}

{{citation

|last1 = Culwin

|first1 = Fintan

|last2 = Lancaster

|first2 = Thomas

|title = Plagiarism issues for higher education

|journal = Vine

|volume = 31

|issue = 2

|year = 2001

|pages = 36–41

|doi = 10.1108/03055720010804005

|url = http://www.essaycoursework.com/howtowriteessaynet/pdf/plagiarism-higheredu.pdf

|url-status = dead

|archiveurl = https://web.archive.org/web/20120405090134/http://www.essaycoursework.com/howtowriteessaynet/pdf/plagiarism-higheredu.pdf

|archivedate = 5 April 2012

|df = dmy-all

}}

{{citation

|last = Lancaster

|first = Thomas

|title = Effective and Efficient Plagiarism Detection

|year = 2003

|type = PhD Thesis

|publisher = School of Computing, Information Systems and Mathematics South Bank University

|url = https://www.researchgate.net/publication/228729388

}}

{{citation

| last1=Maurer | first1=Hermann | last2=Zaka | first2=Bilal

| contribution=Plagiarism - A Problem And How To Fight It

| year=2007

| title=Proceedings of World Conference on Educational Multimedia, Hypermedia and Telecommunications 2007

| pages=4451–4458

| publisher=AACE

| isbn=9781880094624 | url=http://www.editlib.org/p/26021

}}

{{citation

|last1 = Hoad

|first1 = Timothy

|last2 = Zobel

|first2 = Justin

|title = Methods for Identifying Versioned and Plagiarised Documents

|journal = Journal of the American Society for Information Science and Technology

|volume = 54

|issue = 3

|year = 2003

|pages = 203–215

|doi = 10.1002/asi.10170

|citeseerx = 10.1.1.18.2680

|url = http://goanna.cs.rmit.edu.au/~jz/fulltext/jasist-tch.pdf

|access-date = 14 October 2014

|archive-url = https://web.archive.org/web/20150430234004/http://goanna.cs.rmit.edu.au/~jz/fulltext/jasist-tch.pdf

|archive-date = 30 April 2015

|url-status = dead

}}

{{citation

| last=Stein

| first=Benno

| contribution=Fuzzy-Fingerprints for Text-Based Information Retrieval

| date=July 2005

| title=Proceedings of the I-KNOW '05, 5th International Conference on Knowledge Management, Graz, Austria

| pages=572–579

| publisher=Springer, Know-Center

| url=http://www.uni-weimar.de/medien/webis/publications/papers/stein_2005a.pdf

| access-date=7 October 2011

| archive-url=https://web.archive.org/web/20120402051020/http://www.uni-weimar.de/medien/webis/publications/papers/stein_2005a.pdf

| archive-date=2 April 2012

| url-status=dead

| df=dmy-all

}}

{{citation

| last1=Brin

| first1=Sergey

| last2=Davis

| first2=James

| last3=Garcia-Molina

| first3=Hector

| s2cid=8652205

| contribution=Copy Detection Mechanisms for Digital Documents

| year=1995

| title=Proceedings of the 1995 ACM SIGMOD International Conference on Management of Data

| pages=398–409

| publisher=ACM

| isbn=978-1-59593-060-6

| doi=10.1145/223784.223855

| url=http://ilpubs.stanford.edu:8090/112/1/1995-43.pdf

| citeseerx=10.1.1.49.1567

| access-date=7 October 2011

| archive-date=18 August 2016

| archive-url=https://web.archive.org/web/20160818191411/http://ilpubs.stanford.edu:8090/112/1/1995-43.pdf

| url-status=dead

}}

{{citation

| last=Gipp| first=Bela

| title=Citation-based Plagiarism Detection

| date= 2014

| publisher=Springer Vieweg Research

| isbn=978-3-658-06393-1

| url = https://www.springer.com/springer+vieweg/it+%26+informatik/k%C3%BCnstliche+intelligenz/book/978-3-658-06393-1

}}

{{citation

| last1=Gipp | first1=Bela| last2=Meuschke| first2=Norman | last3=Breitinger | first3=Corinna

| last4=Lipinski | first4=Mario | last5=Nürnberger | first5=Andreas

| s2cid=2106222| contribution=Demonstration of Citation Pattern Analysis for Plagiarism Detection

| date=28 July 2013 | title=Proceedings of the 36th International ACM SIGIR Conference on Research and Development in Information Retrieval

| pages=1119| publisher=ACM

| doi=10.1145/2484028.2484214

| url=http://sciplore.org/wp-content/papercite-data/pdf/gipp13.pdf

| isbn=9781450320344}}

{{citation

|last1 = Monostori

|first1 = Krisztián

|last2 = Zaslavsky

|first2 = Arkady

|last3 = Schmidt

|first3 = Heinz

|s2cid = 5796686

|contribution = Document Overlap Detection System for Distributed Digital Libraries

|year = 2000

|title = Proceedings of the fifth ACM conference on Digital libraries

|pages = 226–227

|publisher = ACM

|isbn = 978-1-58113-231-1

|doi = 10.1145/336597.336667

|url = http://www.csse.monash.edu.au/projects/MDR/papers/dl2000-monostori.pdf

|access-date = 7 October 2011

|archive-url = https://web.archive.org/web/20120415160915/http://www.csse.monash.edu.au/projects/MDR/papers/dl2000-monostori.pdf

|archive-date = 15 April 2012

|url-status = dead

|df = dmy-all

}}

{{citation

|last = Baker

|first = Brenda S.

|authorlink = Brenda Baker

|title = On Finding Duplication in Strings and Software

|date = February 1993

|type = Technical Report

|publisher = AT&T Bell Laboratories, NJ

|url = http://cm.bell-labs.com/cm/cs/doc/93/2-bsb-1.ps.gz

|format = gs

|url-status = dead

|archiveurl = https://web.archive.org/web/20071030140253/http://cm.bell-labs.com/cm/cs/doc/93/2-bsb-1.ps.gz

|archivedate = 30 October 2007

|df = dmy-all

}}

{{citation

|last1=Khmelev

|first1=Dmitry V.

|last2=Teahan

|first2=William J.

|s2cid=7316639

|contribution=A Repetition Based Measure for Verification of Text Collections and for Text Categorization

|year=2003

|title=SIGIR'03: Proceedings of the 26th annual international ACM SIGIR conference on Research and development in information retrieval

|pages=[https://archive.org/details/sigir2003proceed0000inte/page/104 104–110]

|publisher=ACM

|doi=10.1145/860435.860456

|citeseerx=10.1.1.9.6155

|isbn=978-1581136463

|url-access=registration

|url=https://archive.org/details/sigir2003proceed0000inte/page/104

}}

{{citation

| last1=Si | first1=Antonio | last2=Leong | first2=Hong Va

| last3=Lau | first3=Rynson W. H.

| s2cid=15273799 | contribution=CHECK: A Document Plagiarism Detection System

| year=1997

| title=SAC '97: Proceedings of the 1997 ACM symposium on Applied computing

| pages = 70–77

| publisher = ACM

| isbn=978-0-89791-850-3

| doi=10.1145/331697.335176

| url=http://www.cs.cityu.edu.hk/~rynson/papers/sac97.pdf

}}

{{citation

| last=Dreher | first=Heinz

| title=Automatic Conceptual Analysis for Plagiarism Detection

| journal=Information and Beyond: The Journal of Issues in Informing Science and Information Technology

| volume=4

| year=2007

| pages=601–614

| url=http://proceedings.informingscience.org/InSITE2007/IISITv4p601-614Dreh383.pdf

| doi=10.28945/974

| doi-access=free

}}

{{citation

|last1 = Muhr

|first1 = Markus

|last2 = Zechner

|first2 = Mario

|last3 = Kern

|first3 = Roman

|last4 = Granitzer

|first4 = Michael

|contribution = External and Intrinsic Plagiarism Detection Using Vector Space Models

|year = 2009

|title = PAN09 - 3rd Workshop on Uncovering Plagiarism, Authorship and Social Software Misuse and 1st International Competition on Plagiarism Detection

|series = CEUR Workshop Proceedings

|volume = 502

|pages = 47–55

|issn = 1613-0073

|url = http://www.uni-weimar.de/medien/webis/research/events/pan-09/pan09-papers-final/zechner09-external-and-intrinsic-plagiarism-detection-using-vsm.pdf

|url-status = dead

|archiveurl = https://web.archive.org/web/20120402051035/http://www.uni-weimar.de/medien/webis/research/events/pan-09/pan09-papers-final/zechner09-external-and-intrinsic-plagiarism-detection-using-vsm.pdf

|archivedate = 2 April 2012

|df = dmy-all

}}

{{citation

| last1=Gipp

| first1=Bela

| last2=Beel

| first2=Jöran

| contribution=Citation Proximity Analysis (CPA) - A new approach for identifying related work based on Co-Citation Analysis

| date=July 2009

| title=Proceedings of the 12th International Conference on Scientometrics and Informetrics (ISSI'09)

| pages=571–575

| publisher=International Society for Scientometrics and Informetrics

| issn=2175-1935

| url=http://www.sciplore.org/publications/2009-Citation_Proximity_Analysis_(CPA)_-_A_new_approach_for_identifying_related_work_based_on_Co-Citation_Analysis_--_preprint.pdf

| access-date=7 October 2011

| archive-url=https://web.archive.org/web/20120913193346/http://www.sciplore.org/publications/2009-Citation_Proximity_Analysis_(CPA)_-_A_new_approach_for_identifying_related_work_based_on_Co-Citation_Analysis_--_preprint.pdf

| archive-date=13 September 2012

| url-status=dead

}}

{{citation

|last1 = Gipp

|first1 = Bela

|last2 = Beel

|first2 = Jöran

|s2cid = 2668037

|contribution = Citation Based Plagiarism Detection - A New Approach to Identifying Plagiarized Work Language Independently

|date = June 2010

|title = Proceedings of the 21st ACM Conference on Hypertext and Hypermedia (HT'10)

|pages = 273–274

|publisher = ACM

|isbn = 978-1-4503-0041-4

|doi = 10.1145/1810617.1810671

|url = http://www.sciplore.org/publications/2010-Citation_Based_Plagiarism_Detection_-_A_New_Approach_to_Identify_Plagiarized_Work_Language_Independently_-_preprint.pdf

|access-date = 21 October 2011

|archive-url = https://web.archive.org/web/20120425044631/http://www.sciplore.org/publications/2010-Citation_Based_Plagiarism_Detection_-_A_New_Approach_to_Identify_Plagiarized_Work_Language_Independently_-_preprint.pdf

|archive-date = 25 April 2012

|url-status = dead

}}

{{citation

|last1 = Gipp

|first1 = Bela

|last2 = Meuschke

|first2 = Norman

|s2cid = 207190305

|contribution = Citation Pattern Matching Algorithms for Citation-based Plagiarism Detection: Greedy Citation Tiling, Citation Chunking and Longest Common Citation Sequence

|date = September 2011

|title = Proceedings of the 11th ACM Symposium on Document Engineering (DocEng2011)

|pages = 249–258

|publisher = ACM

|isbn = 978-1-4503-0863-2

|doi = 10.1145/2034691.2034741

|url = http://www.sciplore.org/publications/2011-Citation_Pattern_Matching_Algorithms_for_Citation-based_Plagiarism_Detection--Greedy_Citation_Tiling,_Citation_Chunking_and_Longest_Common_Citation_Sequence.pdf

|access-date = 7 October 2011

|archive-url = https://web.archive.org/web/20120425044532/http://www.sciplore.org/publications/2011-Citation_Pattern_Matching_Algorithms_for_Citation-based_Plagiarism_Detection--Greedy_Citation_Tiling,_Citation_Chunking_and_Longest_Common_Citation_Sequence.pdf

|archive-date = 25 April 2012

|url-status = dead

}}

{{citation

| last=Holmes | first=David I.

| title=The Evolution of Stylometry in Humanities Scholarship

| journal=Literary and Linguistic Computing

| volume=13

| issue=3

| year=1998

| pages=111–117

| doi=10.1093/llc/13.3.111

}}

{{citation

| last=Juola

| first=Patrick

| title=Authorship Attribution

| journal=Foundations and Trends in Information Retrieval

| volume=1

| issue=3

| year=2006

| pages=233–334

| issn=1554-0669

| doi=10.1561/1500000005

| url=http://www.mathcs.duq.edu/~juola/papers.d/fnt-aa.pdf

| citeseerx=10.1.1.219.1605

| access-date=7 October 2011

| archive-date=24 October 2020

| archive-url=https://web.archive.org/web/20201024054632/http://www.mathcs.duq.edu/~juola/papers.d/fnt-aa.pdf

| url-status=dead

}}

{{citation

| url=http://plagiat.htw-berlin.de/ff-alt/05hilfen/programme.html

| title=Portal Plagiat - Softwaretest 2004

| language=German

| publisher=HTW University of Applied Sciences Berlin

| accessdate=6 October 2011

| archive-url=https://web.archive.org/web/20111025051028/http://plagiat.htw-berlin.de/ff-alt/05hilfen/programme.html

| archive-date=25 October 2011

| url-status=dead

| df=dmy-all

}}

{{citation

| url=http://plagiat.htw-berlin.de/software/2008/

| title=Portal Plagiat - Softwaretest 2008

| language = German

| publisher=HTW University of Applied Sciences Berlin

| accessdate=6 October 2011

}}

{{citation

| url=http://plagiat.htw-berlin.de/software/2010-2/

| title=Portal Plagiat - Softwaretest 2010

| language = German

| publisher=HTW University of Applied Sciences Berlin

| accessdate=6 October 2011

}}

{{citation | last1=Potthast | first1=Martin | last2=Barrón-Cedeño | first2=Alberto | last3=Eiselt | first3=Andreas | last4=Stein | first4=Benno | last5=Rosso | first5=Paolo | contribution=Overview of the 2nd International Competition on Plagiarism Detection | year=2010 | title=Notebook Papers of CLEF 2010 LABs and Workshops, 22–23 September, Padua, Italy | url=http://clef2010.org/resources/proceedings/clef2010labs_submission_125.pdf | access-date=7 October 2011 | archive-url=https://web.archive.org/web/20120403191349/http://clef2010.org/resources/proceedings/clef2010labs_submission_125.pdf | archive-date=3 April 2012 | url-status=dead | df=dmy-all }}

{{citation

| last1=Potthast

| first1=Martin

| last2=Eiselt

| first2=Andreas

| last3=Barrón-Cedeño

| first3=Alberto

| last4=Stein

| first4=Benno

| last5=Rosso

| first5=Paolo

| contribution=Overview of the 3rd International Competition on Plagiarism Detection

| year=2011

| title=Notebook Papers of CLEF 2011 LABs and Workshops, 19–22 September, Amsterdam, Netherlands

| url=http://www.uni-weimar.de/medien/webis/publications/papers/stein_2011t.pdf

| access-date=7 October 2011

| archive-url=https://web.archive.org/web/20120402051053/http://www.uni-weimar.de/medien/webis/publications/papers/stein_2011t.pdf

| archive-date=2 April 2012

| url-status=dead

| df=dmy-all

}}

{{citation

| last1=Stein

| first1=Benno

| last2=Lipka

| first2=Nedim

| last3=Prettenhofer

| first3=Peter

| s2cid=13426762

| title=Intrinsic Plagiarism Analysis

| journal=Language Resources and Evaluation

| volume=45

| issue=1

| year=2011

| pages=63–82

| issn=1574-020X

| doi=10.1007/s10579-010-9115-y

| url=http://www.uni-weimar.de/medien/webis/publications/papers/stein_2011a.pdf

| access-date=7 October 2011

| archive-url=https://web.archive.org/web/20120402051105/http://www.uni-weimar.de/medien/webis/publications/papers/stein_2011a.pdf

| archive-date=2 April 2012

| url-status=dead

}}

{{citation

| last1=Potthast

| first1=Martin

| last2=Barrón-Cedeño

| first2=Alberto

| last3=Stein

| first3=Benno

| last4=Rosso

| first4=Paolo

| s2cid=14942239

| title=Cross-Language Plagiarism Detection

| journal=Language Resources and Evaluation

| volume=45

| issue=1

| year=2011

| pages=45–62

| issn=1574-020X

| doi=10.1007/s10579-009-9114-z

| hdl=10251/37479

| url=http://www.uni-weimar.de/medien/webis/publications/papers/stein_2011b.pdf

| access-date=7 October 2011

| archive-url=https://web.archive.org/web/20131126010114/http://www.uni-weimar.de/medien/webis/publications/papers/stein_2011b.pdf

| archive-date=26 November 2013

| url-status=dead

| df=dmy-all

| hdl-access=free

}}

{{citation

| last=Weber-Wulff

| first=Debora

| contribution=On the Utility of Plagiarism Detection Software

| date=June 2008

| title=In Proceedings of the 3rd International Plagiarism Conference, Newcastle Upon Tyne

| url=http://archive.plagiarismadvice.org/images/stories/old_site/media/2008papers/P21%20Weber-Wulff.pdf

| access-date=29 September 2013

| archive-date=1 October 2013

| archive-url=https://web.archive.org/web/20131001000000/http://archive.plagiarismadvice.org/images/stories/old_site/media/2008papers/P21%2BWeber-Wulff.pdf

| url-status=usurped

}}

}}

Literature

  • Carroll, J. (2002). A handbook for deterring plagiarism in higher education. Oxford: The Oxford Centre for Staff and Learning Development, Oxford Brookes University. (96 p.), {{ISBN|1873576560}}
  • Zeidman, B. (2011). The Software IP Detective's Handbook. Prentice Hall. (480 p.), {{ISBN|0137035330}}

Category:Educational assessment and evaluation

Category:Plagiarism detectors