我想引用文本中的任何图表、表格或引文,这样如果我点击引用(或链接),它就会带我到实际的图表、表格或引文。目前,在我使用 LaTeX 生成的 PDF 中没有发生这种情况。我是否应该为此添加任何包?
答案1
您需要使用hyperref
包来实现这一点。在下面的代码中,我添加了一些自定义作为起点,因为它也是经常被问到的。
\usepackage{hyperref}
\hypersetup{
backref = true,
pagebackref = true,
colorlinks = true,
linkcolor = [rgb]{0.0,0.0,0.8},
anchorcolor = [rgb]{0.0,0.0,0.8},
citecolor = [rgb]{0.0,0.0,0.8},
filecolor = [rgb]{0.0,0.0,0.8},
urlcolor = [rgb]{0.0,0.0,0.8},
pdftitle= {Title},
pdfsubject= {Title},
pdfauthor= {A. Uthor}
}