Hyperref 和 hyperfootnotes 已损坏

Hyperref 和 hyperfootnotes 已损坏

在我的 PDF 中,我可以点击脚注,但链接不会指向页面底部的脚注条目。我还使用了 footnotebackref 包,它运行良好。有什么建议吗?以下是代码片段:

    \usepackage{ifxetex,ifluatex}
\ifxetex
\usepackage[setpagesize=false, % page size defined by xetex
             unicode=false, % unicode breaks when used with xetex
            xetex]{hyperref}
 \usepackage{footnotebackref}
 %\usepackage[bottom]{footmisc}
\else
 \usepackage[unicode=false]{hyperref}
 \usepackage{xcolor}
 \usepackage{footnotebackref}
 %\usepackage[bottom]{footmisc}
\fi
\hypersetup{breaklinks=true,
            bookmarks=true,
            pdfauthor={$author-meta$},
            pdftitle={$title-meta$},
            colorlinks=true,
            citecolor=$if(citecolor)$$citecolor$$else$blue$endif$,
            urlcolor=$if(urlcolor)$$urlcolor$$else$[RGB]{41,86,150}$endif$,
            linkcolor=$if(linkcolor)$$linkcolor$$else$grey1$endif$,
            pdfborder={0 0 0}}
\urlstyle{same} % don't use monospace font for urls

相关内容