Created
August 23, 2014 10:53
-
-
Save david0/e37ea20138cc73385cfb to your computer and use it in GitHub Desktop.
Latex Template to create an A4 handout
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
% Template to create an A4 handout | |
% input should be a 16:9 PDF presentation | |
\documentclass[a4paper]{article} | |
%\documentclass[a4paper]{beamer} | |
%\documentclass[a4paper]{handoutWithNotes} | |
%\pgfpagesuselayout{4 on 1 with notes}[a4paper,border shrink=5mm] | |
\usepackage{pdfpages} | |
%\AtBeginSection[] | |
%{ | |
% \begin{frame}[plain,c] | |
% \begin{center} | |
% \Large \insertsection | |
% \end{center} | |
% \end{frame} | |
%} | |
\newcommand{\mypagecmd}{ | |
\thispagestyle{empty} | |
} | |
\begin{document} | |
\includepdf[pages=-,nup=1x1,frame=true, delta=0mm 5mm, offset=0mm {0.24\paperheight}, pagecommand=\mypagecmd,scale=0.9 ]{thesis.pdf} | |
\end{document} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment