Question
I want to give a handout for my course (made in beamer). I use Xelatex, but I don't think this is relevant here.
The layout should be a portrait A4 with the slide at the top and a zone with notes at the bottom and page numbering (cf image 1).
Img 1:
Here is what I tried
Tries
Try 1 : beamer handout class
I tried something like this (minimal example)
The images can be anything (convert -size 1500x1000 xc:grey a.png should do the trick to create some quickly).
\documentclass[handout]{beamer}
\usepackage{handoutWithNotes} % from https://github.com/gdiepen/latexbeamer-handoutWithNotes
\pgfpagesuselayout{1 on 1 with notes}[a4paper,border shrink=5mm]
\usetheme[hideothersubsections]{Goettingen}
\usecolortheme{default}
\begin{document}
\begin{frame}
\only<1>{\centering \includegraphics[width=10cm]{a.png}}
\only<2>{\centering \includegraphics[width=10cm]{b.png}}
\end{frame}
\end{document}
Which works nearly fine (cf image 1) where there is no \only or \onslide or \pause. But when the slide takes more than one page it doesn't display nicely (cf image 2)...
What I would like with this solution
Getting 2 different pages (ie putting in two frames instead of using \onslide), with page numbering would be OK.
Changing onslide<1> with \onslide<1-| handout:1> (for each frame) seems to do the trick, but I don't get the page numbers and I have to change all the onslide elements... (image 3)
Try 2 : includepdf and custom style
I also tried to use includepdf (all.pdf is for instance the pdf created without the [handout] mode on the previous code)
\documentclass[a4paper]{article}
\usepackage{pdfpages}
\begin{document}
\includepdf[pagecommand={\thispagestyle{blank}},pages=-,landscape=false,frame=true, offset=0 198]{all.pdf}
\end{document}
What I would like
But I don't know how to add the note section (I think by hacking a style and a footer).




I don't think they are related, I want to print a handout with some lines under the frames, for them to take some notes, not dsplaying my notes there.
– ice3 Aug 25 '18 at 10:35\pgfpagesuselayout{2 on 1 with notes landscape}[a4paper,border shrink=5mm]help?), hope someone else could help. - Hint: You always could use theexample-imagein an mwe, so use\includegraphics[width=10cm]{example-image-a}instead of\includegraphics[width=10cm]{a.png}. – Bobyandbob Aug 25 '18 at 10:51handoutdocument class option? Without your example would automatically produce two pages – samcarter_is_at_topanswers.xyz Aug 25 '18 at 13:24handout– samcarter_is_at_topanswers.xyz Aug 25 '18 at 14:54handoutoption. The notes are added by thehandoutWithNotespackage and are not connected in any way to thehandoutoption. As for the page numbering: This is a seperate problem, not connected to the use of overlays and handout options. This is just how the layout of thehandoutWithNotespackage is defined. This can be changed, but you should ask this as separate question. – samcarter_is_at_topanswers.xyz Aug 27 '18 at 11:04