我在 Jupyter Lab 中使用 Latex,出于某种原因,当我尝试向文档添加目录时,除了“目录”一词之外什么都没有得到,如您在图片中看到的那样。我没有使用 \section*,而且我还发现我在图片列表和表格列表中遇到了同样的问题。有人知道如何解决这个问题吗?这是我的代码的开头:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[margin=1in]{geometry}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{bm}
\usepackage{mathtools}
\usepackage{float}
\usepackage{hyperref}
\title{\textbf{Experimental Investigations of Donor-Acceptor Pairs in Diamond} \\
\large A summary of work done from January 2020 to June 2021}
\author{Jeremy Estes}
\date{\today}
\begin{document}
\maketitle
\setcounter{tocdepth}{3}
\tableofcontents
\listoffigures
\listoftables
\clearpage
\section{Introduction, Theoretical Model, Experimental Goals}
\subsection{Introduction}
This document provides a detailed summary
\end{document}
答案1
正如我在评论中提到的,您的文档示例运行良好并给出了预期结果。因此,这里有一些基本解释,在使用指令\tableofcontents
、listoffigures
和编译任何文档时会发生什么\listoftables
。
首次编译文档示例时,LaTeX 会创建文件<file name>.toc
,在其中写入所有章节、子章节和子子章节的标题。同样,它还会创建<file name>.lof
图形标题和<file name>.lot
表格标题的文件。
在第二个编译指令中 \tableofcontents
读取此信息.toc
并创建带有标题的目录内容,指令\listoffigures
读取信息信息从.lof
创建图片列表并\listoftables
以类似的方式创建表格列表. 您应该在文件夹中看到的那些表格/列表,.toc
例如
\contentsline {section}{\numberline {1}Introduction, Theoretical Model, Experimental Goals}{2}{section.1}%
\contentsline {subsection}{\numberline {1.1}Introduction}{2}{subsection.1.1}%
\contentsline {subsection}{\numberline {1.2}Theoretical Model}{2}{subsection.1.2}%
\contentsline {subsubsection}{\numberline {1.2.1}Case 1}{2}{subsubsection.1.2.1}%
\contentsline {subsubsection}{\numberline {1.2.2}Case 2}{2}{subsubsection.1.2.2}%
\contentsline {subsection}{\numberline {1.3}Experimental Goals}{2}{subsection.1.3}%
经过两次编译后,您的案例将出现在文档的第一页上,如下所示:
在第二页您应该看到文档正文,其内容如下:
从这两个图中您可以看到,在我的测试中,我向您的文档示例添加了几个子部分和子小节以及一个图。
您应该会得到相同的结果。如果不是,那么会发生一些我们不知道的事情。因此,请检查在第一次编译后是否生成了文件.toc
,.lof
以及lot
它们的内容是什么。如果它们是空的(您的文档示例不会发生这种情况),那么您会做一些奇怪的事情。
在测试中我使用了您的文档示例代码的以下扩展:
\documentclass{article}
\usepackage[margin=1in]{geometry}
\usepackage{graphicx}
\usepackage{mathtools, amssymb, bm}
\usepackage{float}
\usepackage{hyperref}
\setcounter{tocdepth}{3}
\title{\textbf{Experimental Investigations of Donor-Acceptor Pairs in Diamond} \\
\large A summary of work done from January 2020 to June 2021}
\author{Jeremy Estes}
\date{\today}
\begin{document}
\maketitle
\tableofcontents
\listoffigures
\listoftables
\clearpage
\section{Introduction, Theoretical Model, Experimental Goals}
\subsection{Introduction}
\begin{figure}[ht]
\centering
\includegraphics{example-image-duck}
\caption{Owner of diamants}
\label{fig:duck}
\end{figure}
\subsection{Theoretical Model}
\subsubsection{Case 1}
\subsubsection{Case 2}
\subsection{Experimental Goals}
This document provides a detailed summary
\end{document}