Watermark in LaTeX / pdftex in 4 lines

To watermark a document in a LaTeX document using pdftex add the following lines to your LaTeX document preamble:

\usepackage{draftwatermark}
\SetWatermarkLightness{ 0.9 }
\SetWatermarkText{\today}
\SetWatermarkScale{ 3 }

First we invoque the LaTeX package draftwatermark. Then, as a watermark is something that appears transparent when viewed, the code defines the lightness of the watermark. Next, the text of the watermark is defined — in the example above I’m using the date. You can choose CONFIDENTIAL or SECRET or any watermark text you might need for your projects. And finally, the scale of the watermark on the document is set. Play with this value to test the coverage of the watermark in the document.

This is a basic example for watermarking a document. If you need more options the draftwatermark package has many and you should read the documentation for all watermarking options and features.

Textmate Watch LaTeX Document

TextMate - The Missing Editor for Mac OS X

É uma das melhores funcionalidades do TextMate para quem está a escrever um documento em LaTeX. A cada Save, mesmo em sub-documentos, ele monitoriza as alterações que vão sendo feitas e refaz em background o typeset apresentando o pdf final quase em tempo real. No entanto pode acontecer (como me aconteceu) que a dada altura o Watch fique pendurado ocupando o processador no processo pdfetex e não consiga sair de lá. Isto pode acontecer quando se altera uma imagem ou parte de um documento enquanto este está a ser monitorizado. Se tal acontecer o truque parece ser apagar os ficheiro escondidos “.documento” que estão na pasta monitorizada para que o TextMate consiga novamente monitorizar o documento. Soubesse eu isto e tinha poupado umas horas ontem.