Windows 上的 TeXstudio 与 Linux 上的 latex 之间的区别

Windows 上的 TeXstudio 与 Linux 上的 latex 之间的区别

我有以下源文件:

\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;

它没有任何书签。 在此处输入图片描述 如何修复 Linux 环境?

我有同样的超链接问题,它们在 TeXstudio/Windows 上可以点击,但在 Linux 环境中却不可点击。

pdfTeX 3.14159265-2.6-1.40.18 (TeX Live 2017/Debian)

答案1

只需直接用 pdflatex 进行编译即可。

pdflatex book.tex

或者,您可以在设置下查看 texstudio 中使用的命令。

背景:先编译为 dvi 然后再编译为 pdf 时,有关文档结构的信息会丢失。

相关内容