如何將目錄部分作為書籤顯示在 pdf 中?

如何將目錄部分作為書籤顯示在 pdf 中?

我對乳膠很陌生。我正在嘗試像現在一樣用乳膠製作論文。我正在使用 mwart 文檔類。我也不知道它是文檔類特定的東西,但是我在目錄中的項目在輸出 pdf 中作為書籤不可見...我想知道如何製作?我似乎無法在網上找到解決方案。我將不勝感激所有的幫助!

答案1

雖然我肯定會說你最好不要加載hyperref,但我仍然建議使用該bookmark包(由同一作者提供)。一個很好的理由是,它將bookmark在第一次運行時填充 PDF 書籤。

這是一個簡單的例子:

\documentclass{mwart}
\usepackage{lipsum}
\usepackage{xcolor}
%\usepackage{hyperref}
%\hypersetup{
%  colorlinks, allcolors=purple
%}
\usepackage{bookmark}
\bookmarksetup{
  open,
  openlevel=2,
  color=blue,% <-- requires xcolor.sty; colour is not supported by all PDF viewers, however
}


\begin{document}
\tableofcontents
\section{S One}
\subsection{SS One}
\lipsum[1]

\section{S Two}
\subsection{SS Two}

%
\label{myexample}% add a unique bookmark
\bookmark[
  rellevel=0,
%  keeplevel,
  dest=myexample,
  bold=true,
  color=red,
]{LOOK AT THIS}
%
\lipsum[1]

\section{S Three}
\subsection{SS Three}
\lipsum[1]

\end{document}

兩者都為hyperrefPDFbookmark格式帶來了許多好處

相關內容