Last active
September 29, 2016 07:27
-
-
Save gsauthof/e45a393e3ed8274fc5a8fc8faaef3d2f to your computer and use it in GitHub Desktop.
minimal example for http://tex.stackexchange.com/a/64665/929
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% 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