This is a cross-post with http://answers.yahoo.com/my-activity;_y ... ns-answers
I'm a teaching assistant at an engineering school. I have found an alarming number of plagiarists among one of the classes that I teach. Whenever I give them a tutorial on something and ask for a report about it later, many people just copy and paste from the tutorial slides I provided.
Now I produce all my documents using pdflatex and I was wondering if there's a way to provide alternative text to be copied to the clipboard when students try copy/pasting from a document.
I know I can prevent copying altogether by encrypting the PDF but this can be circumvented. Another approach I found is to use the accsupp package. I tried the following:
Code: Select all
\documentclass{article}
\usepackage{accsupp}
\usepackage{blindtext}
\begin{document}
\BeginAccSupp{ActualText={Stop Copying Other people's work!}}
\Blindtext[2][3]
\EndAccSupp
\end{document}
Any help would be really appreciated. Thanks