我是 LaTeX 新手,我想创建像这样的目录
提示:每个红色框都是指向文章中某个区域的链接。
答案1
这是使用时获得的正常目录
\tableofcontents
为了实现链接,您需要使用hyperref
包
\usepackage{hyperref}
完整的例子如下:
\documentclass{article}
\usepackage{hyperref}
\begin{document}
\tableofcontents
\section{foo}
\subsection{bar}
\section{foo 2}
\subsection{bar 2}
\subsection{bar 3}
\end{document}
其余部分自动完成