Adobe Acrobat 메뉴를 테스트 중입니다. 페이지 하단에 "이전 다음 처음 마지막 뒤로 앞으로"가 있어야 합니다.
여기 내 MWE가 있습니다. 내 코드가 작동하지 않는 이유를 지적할 수 있습니까?
\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}