This question already has an answer here:
- Inserting 'PTO' (please turn over) 1 answer
I like to have a "turn page around" advise on an exam sheet because it continues. Right now, I do it manually. I need to search where the page ends and put a
\vspace*{0.5cm}
\hfill \textit{Please turn \(\hookrightarrow\)}
at the appropriate position. This is not a very neat solution, since the space needed to be adopted so that it doesn't fall onto the next page. And if I would have to do this twice or more, the vertical position should always be the same. Is there a way to achieve this automatically? Here's a minimal working example to play with.
\documentclass{minimal}
\usepackage[english]{babel}
\usepackage{blindtext}
\begin{document}
\begin{enumerate}
\item[\textbf{Task 1}]
\blindtext[5]
\item[\textbf{Task 2}]
\blindtext[3]
\vspace*{0.1cm}
\hfill \textit{Bitte wenden \(\hookrightarrow\)}
\item[\textbf{Task 3}]
\blindtext[2]
\end{enumerate}
\end{document}
