如何让文档标题出现在 PDF 书签中?

如何让文档标题出现在 PDF 书签中?

我的章节和小节出现在书签中,但标题没有。我见过一些论文将其标题作为书签包含在 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对。

相关内容