我有一个包含尾注的 Latex 文档。我已修改此文档以使用 hyperref 将带框的链接显示为黑色。PDF 输出符合我的要求。
分子量:%
\documentclass[a4paper,twoside,10pt]{report}
\usepackage[multiple]{footmisc}
\usepackage{hyperref}
\usepackage{endnotes}
\input{hyperendnotes.sty}
\let\footnote=\endnote
\usepackage{color}
\usepackage[usenames,dvipsnames,svgnames,table]{xcolor}
\begin{document}
\hypersetup{
linkbordercolor=Black
}
Sample Text Sample Text \footnote{This endnote shows the color frame with the corresponding footnote (endnote number)}
\begingroup
\parskip 2ex
\theendnotes
\endgroup
\end{document}
可以找到 hyperendnotes.sty 版本这里。为了方便起见,我添加了 xcolor,以便将每个尾注编号的框架颜色更改为黑色。
但是,我需要打印输出也显示这些框。在当前版本中,尾注中的框在打印的文档中消失(这是常见现象!)。
是否有机会改变这种默认行为,以便打印输出显示这些尾注框?
最终目标是能够打印不带注释部分的 PDF,但仍然能够在正文中突出显示这些注释的位置(因此有黑框)。
我曾尝试改变每个尾注的编号方式,但 hyperref 和 endnote 包之间存在冲突。
感谢您的帮助。