I've been grading academic papers for a couple of years now and I've started to see numerous patterns in spelling and grammer mistakes. Also, I've noticed that less experienced academics tend to use certain constructs that immediately raise "smells" to more experienced researchers.
I would like to automagically recognize and annotate these in PDF files. Is anyone aware of a script that I could use to automagically annotate and comment PDF files? Perhaps it's dead simple, but I feel like I'm one of the first ones to ask this question.
Programming is no problem.
If I were you I would start with the PDF Library SDK which supports the things you're looking for:
One drawback is that you have to apply for it and Adobe may refuse your request.
EDIT:
PDFedit seems promising. It's an open source GUI application that allows you to modify PDF manually or by scripting.
To solve this task, you need 3 things:
Text extraction
PDFlib's TET (text extraction toolkit) lets you extract text from any PDF. It's the most powerful of available PDF text extraction tools out there that allows you access via commandline and scripting. It can handle such weirdies (from the p.o.v. of text extraction) as ligatures as well as different text encodings. More important, it can tell you the exact page number and coordinates on the PDF page for any character or text string it extracted.
Inserting PDF annnotations
After you parsed the text, and your logic decided which comment to add for which page, you can use PDFlib or Ghostscript to add comments ("annotations") to the original PDF.
I'm not delivering a tutorial about how to use PDFlib in order to add annotations to existing PDFs here. But I will leak some insider knowledge about how Ghostscript can do it:
Using Ghostscript for adding annotations to PDFs
To add an annotation with Ghostscript to an existing PDF, first create a text file called my-pdfmarks.txt (or whatever name you prefer). Now type into that textfile the content of your annotation, using the following syntax:
Then, run Ghostscript command like the following. I'm assuming Windows now -- for Linux/Unix/MacOSX use
gs
instead ofgswin32c.exe
for the executable, and use\
instead of^
for the line continuation marks:Voila! Your output PDF now has an annotation on page 2.
Now you probably didn't understand what exactly you were doing:
Tweakable parameter values (after each keyword) in the my-annotations.txt file are all BUT the following:
/DOCINFO pdfmark
"/Subtype /Text
"/Name /Note
"/ANN pdfmark
"For example, to make the annotation appear in pure red, use
/Color [1 0 0]
.In order to fully understand the pdfmark syntax (and add more tweaks to your procedure), you'll need to google for Adobe's pdfmark Reference Manual and read that.
Since you said 'programming is no problem' you now have all the building blocks to automate this with any scripting language of your choice.
VeryPDF PDF Highlighter Command Line software may useful to you, you can use it to search keywords in PDF pages, place highlight annotations or hyperlinks to these keywords, and then save to a new PDF file. This work can be done automatically from Command Line or a script.