I'd like to have the backside of my LaTeX pages printed with "gibberish" to prevent someone from holding the letter against a lamp and reading the see-through text. Kind of like the PIN letters have that banks send out when one gets a new debit-/credit card that has a new PIN going with it (somehow similar to this).
So, what I'd do if I knew how to is set up multiple "frames", each pretty much the size of the page itself, fill those with random letters and numbers, print them ontop of each other and misalign each by a few pixels, then print these on every second page...
Any help, as always, is highly appreciated.
This is what I go with now:
%Fontsize, Layout, papersize, type of document
\documentclass[12pt,oneside,a4paper]{scrartcl}
%margins
\renewcommand{\familydefault}{\sfdefault}
\usepackage{helvet}
\usepackage[left=0cm,right=0cm,top=1cm,bottom=1cm]{geometry}
\usepackage[cm]{fullpage}
\usepackage[nopar]{lipsum}
%header and footer (leaving this out yields a funny, ragged bottom)
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
%top line
\renewcommand{\headrulewidth}{0.5pt}
%footer centered
\fancyfoot[C]{\thepage}
%bottom line
\renewcommand{\footrulewidth}{0.5pt}
\newsavebox{\gibber}
\begin{document}
\savebox{\gibber}{\parbox{\linewidth}{\lipsum\lipsum}}
\vspace*{8cm}
\raisebox{0pt}[0pt][0pt]{\usebox{\gibber}}
\raisebox{-3pt}[0pt][0pt]{\usebox{\gibber}}\\
\raisebox{-5pt}[0pt][0pt]{\usebox{\gibber}}\\
\raisebox{-9pt}[0pt][0pt]{\usebox{\gibber}}\\
\hspace*{8pt}\raisebox{-12pt}[0pt][0pt]{\usebox{\gibber}}
\end{document}

