設定 AcrobatMenu 時出錯

設定 AcrobatMenu 時出錯

我正在測試 Adob​​e 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}

相關內容