如果您将 的包footnotebackref
与hyperref
的包选项“hidelinks”一起使用,您将收到选项冲突错误,并且 hidelinks 选项将被忽略。在使用 包时,有没有办法隐藏链接footnotebackref
?
\documentclass{article}
\usepackage[symbol=$\uparrow$]{footnotebackref}
\usepackage[hidelinks]{hyperref}
\begin{document}
This is a statement.\footnote{And it is supported by this footnote.}
\end{document}
答案1
您必须按相反的顺序放置这两个包:
\documentclass{article}
\usepackage[hidelinks]{hyperref}
\usepackage[symbol=$\uparrow$]{footnotebackref}
\begin{document}
This is a statement.\footnote{And it is supported by this footnote.}
\end{document}