Skip to content

Instantly share code, notes, and snippets.

@david0
Created August 23, 2014 10:53
Show Gist options
  • Save david0/e37ea20138cc73385cfb to your computer and use it in GitHub Desktop.
Save david0/e37ea20138cc73385cfb to your computer and use it in GitHub Desktop.
Latex Template to create an A4 handout
% 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