我的章节和小节出现在书签中,但标题没有。我见过一些论文将其标题作为书签包含在 PDF 中。
答案1
您可以使用以下方式手动添加书签\bookmark{<title>}
:
\documentclass{article}
\usepackage{bookmark}% http://ctan.org/pkg/bookmark
\title{My title}
\author{Me}
\begin{document}
\makeatletter
\bookmark[named=FirstPage]{\@title}
\makeatother
\maketitle
\section{A section}
\subsection{A subsection}
\subsection{Another subsection}
\section{Another section}
\subsection{A subsection}
\subsection{Another subsection}
\end{document}
我用过
\makeatletter
\bookmark[named=FirstPage]{\@title}
\makeatother
以便使用给定的\title
。但是,您可以重新指定标题并删除\makeatletter
...\makeatother
对。