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}

相关内容