Ich teste das Adobe Acrobat-Menü. Unten auf der Seite sollte "Vorherige Nächste Erste Letzte Zurück Vorwärts" stehen.
Hier ist mein MWE. Können Sie erklären, warum mein Code nicht funktioniert?
\documentclass{article}
\usepackage{lipsum}
\usepackage{fancyhdr}
\usepackage[colorlinks{hyperref}
\pagestyle{fancy}
\cfoot{\NavigationalBar}{%
\Acrobatmenu{PrevPage}{Previous}
\Acrobatmenu{NextPage}{Next}
\Acrobatmenu{FirstPage}{First}
\Acrobatmenu{LastPage}{Last}
\Acrobatmenu{GoBack}{Back}
\Acrobatmenu{GoForward}{Forward}
}
\begin{document}
\tableofcontents
\NavigationalBar
\section{Document start}
\lipsum[1-3]
\NavigationalBar
\section{Last section}
\lipsum[4]
\NavigationalBar
\end{document}