使用 footnotebackref 和 hyperref 选项“hidelinks”

使用 footnotebackref 和 hyperref 选项“hidelinks”

如果您将 的包footnotebackrefhyperref的包选项“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}

在此处输入图片描述

相关内容