如何用 Latex 显示文档结构?我正在写一篇文章,我想知道在编译并保存为 pdf 文件后,如何显示文本的章节或结构以方便阅读?
答案1
我假设您要查找的是目录 (ToC),它包含在命令中\tableofcontents
。如果您也调用\usepackage{hyperref}
,则目录中的项目将可点击:
\documentclass{article}
\usepackage{hyperref}
\begin{document}
\tableofcontents
\section{First section}
\subsection{Its subsection}
\section{Another section}
\end{document}