我有以下源文件:
\documentclass{book}
\usepackage{bookmark}
\begin{document}
\addcontentsline{toc}{section}{Section without standard heading}
Doc goes here.
\end{document}
当我在 Windows 上使用 TeXstudio 编译它时,生成的 PDF 带有书签。但是,当我在 Linux 上使用
latex book.tex; dvipdfm book;
我有同样的超链接问题,它们在 TeXstudio/Windows 上可以点击,但在 Linux 环境中却不可点击。
pdfTeX 3.14159265-2.6-1.40.18 (TeX Live 2017/Debian)
答案1
只需直接用 pdflatex 进行编译即可。
pdflatex book.tex
或者,您可以在设置下查看 texstudio 中使用的命令。
背景:先编译为 dvi 然后再编译为 pdf 时,有关文档结构的信息会丢失。