当尝试使用未编号的部分创建目录时,即使经过多次重复编译,我也会获得一个空的目录。
当我使用带编号的部分时,目录工作正常。
示例(完整的Latex文档)如下所示(我试图尽量保持简单):
\documentclass[12pt,a4paper,english]{article}
\begin{document}
\tableofcontents
\section*{Testsection} %Works when section* is replaced with section
Test
\end{document}
答案 0 :(得分:4)
可以使用
将分段单位的已加星标版本的条目插入到ToC中Line 5: 9029 (Core Dumped)
其中\addcontentsline{toc}{<type>}{<content>}
是<type>
,或section
,或者......这是一个最小的例子:
subsection
出于对齐目的,您可能有兴趣在ToC条目中添加\documentclass{article}
\begin{document}
\tableofcontents
\section{A numbered section}
\section*{An unnumbered section}
\addcontentsline{toc}{section}{Testsection}
\section{Another numbered section}
\section*{Another unnumbered section}
\addcontentsline{toc}{section}{\protect\numberline{}Another unnumbered section}
\end{document}
ed \protect
。