Skip to content

Instantly share code, notes, and snippets.

@gsauthof
Last active September 29, 2016 07:27
Show Gist options
  • Save gsauthof/e45a393e3ed8274fc5a8fc8faaef3d2f to your computer and use it in GitHub Desktop.
Save gsauthof/e45a393e3ed8274fc5a8fc8faaef3d2f to your computer and use it in GitHub Desktop.
% curl -L -o signature.png \
% 'https://upload.wikimedia.org/wikipedia/commons/thumb/6/62/Beethoven_Signature.svg/150px-Beethoven_Signature.svg.png'
% compile twice: pdflatex sig_overlay.tex
\documentclass{article}
\usepackage{blindtext}
\usepackage{graphicx}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[remember picture,overlay]
\node [xshift=150mm,yshift=-80mm]
at (current page.north west) {\includegraphics{signature}} ;
\end{tikzpicture}
\blindtext
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment