数字版和硬拷贝的超链接选项是否相同?

数字版和硬拷贝的超链接选项是否相同?

我正在寻找 hyperpdf 的一组“良好”选项,以使 PDF 看起来整洁,适合打印和数字查看。

如果我只是使用\usepackage{hyperref},每个目录条目周围都会出现一个红色框,每个引用周围都会出现一个绿色框,这是不美观的。

答案1

一个可能的解决方案是hyperref 手动的本身:

  \usepackage[%
    pdftex,%
    colorlinks,%
    hyperindex,%
    plainpages=false,%
    bookmarksopen,%
    bookmarksnumbered,
    pdfusetitle,%
  ]{hyperref}

这样,所有方框都会消失,目录项文本颜色将变为红色,而参考文献文本颜色将变为绿色。

答案2

摘自我的博士论文作为起点:

\usepackage[%
bookmarks, 
bookmarksopen=true, 
bookmarksopenlevel=1, 
bookmarksnumbered=true, 
hidelinks,
pdfstartpage={1}, 
pdfstartview={FitH},
pdfpagelabels=true,
plainpages=false,
hyperfootnotes=true,
]{hyperref} 

我认为hidelinks这是最重要的部分(去除颜色和边框)。

相关内容