I want to do a presentation simulating an overhead projector which some professors used when I was a math student.
I couldn't find an image to mimic the background produced by an overhead projector. Also I was trying to make the text a little blurry using this: Blur the text so it's not readable, but it would be better if the entire document (background and images) is a little blurry and yellowish. I'm using a different font to simulate handmade annotations (http://www.google.com/fonts/specimen/Permanent+Marker).
Being more specific:
Background produced by an overhead projector.
Blurry and yellowish document.
Handmade annotations across the text.
Edit: Minimal example without text blur
\documentclass{article}
\usepackage[pages=all]{background}
\usepackage{fontspec}
\usepackage{color}
\newfontfamily\myfont[Scale=2.5]{PermanentMarker}
\usepackage{lipsum}
\backgroundsetup{
opacity=0.4,
angle=0,
contents={%
\includegraphics[width=\paperwidth,height=\paperheight]{background-image}
}%
}
\usepackage[overlay,absolute]{textpos}
\begin{document}
\lipsum[1-5]
\begin{textblock}{5}(6,6)
{\myfont {\color{blue} Some annotations}}
\end{textblock}
\end{document}
