[Tex/LaTex] Automatic message “continue on next page” in all the pages (except the last)

header-footerpage-breakingpage-numbering

I have critical document (aka a CV) with just two or three pages. Even when opened on screen it can look as if it has one page, because there is no clue (in the page) that the document continues.

Is there any package that can add either a "continued on next page" or an elegant arrow symbol "->" to hint that there is another page next.

I could use fancyhdr but it looks a complicated overkill because the exceptional page is the last one and not the first one. I want to avoid page numbering as well.

Best Answer

With fancyhdr, it is not complicated.

\documentclass{article}
\usepackage{fancyhdr}
\usepackage{kantlipsum}
\fancypagestyle{firstpagestyle}{%
\fancyhf{}
\rfoot{Continued on next page $\longrightarrow$}
\renewcommand{\headrulewidth}{0pt}
}
\fancypagestyle{regular}{%
\fancyhf{}
\rhead{LOGO}
\chead{Some}
\lhead{\thepage}
\rfoot{This is other page}%
}

\pagestyle{firstpagestyle}
\begin{document}
  \kant[1-15]
  \thispagestyle{empty}  %% or regular
\end{document}

enter image description here

With tikzpagenodes, needs 2-3 compilation runs.

\documentclass{article}
\usepackage{tikzpagenodes}
\usepackage{kantlipsum}
\pagestyle{empty}
\begin{document}
 \begin{tikzpicture}[remember picture,overlay]
   \draw[thick,magenta,latex-] (current page footer area.south east) -- +(-2cm,0)
             node[pos=1,anchor=east,text=blue] (a) {Continued on next page};
 \end{tikzpicture}
  \kant[1-6]
\end{document}

enter image description here

With eso-pic

\documentclass{article}
\usepackage{eso-pic}
\usepackage{kantlipsum}
\pagestyle{empty}
\AddToShipoutPictureBG*{%
  \AtTextLowerLeft{%    
    \hspace*{\textwidth}%
    \raisebox{-4\baselineskip}{%
      \makebox[0pt][r]{Continued on next page $\longrightarrow$}
}}}%
\begin{document} 
  \kant[1-6]
\end{document}
Related Question