乳胶 - 具有未编号部分的空白目录

时间:2014-09-09 19:50:43

标签: latex tex

当尝试使用未编号的部分创建目录时,即使经过多次重复编译,我也会获得一个空的目录。

当我使用带编号的部分时,目录工作正常。

示例(完整的Latex文档)如下所示(我试图尽量保持简单):

\documentclass[12pt,a4paper,english]{article}

\begin{document}
\tableofcontents
\section*{Testsection} %Works when section* is replaced with section
 Test
\end{document}

1 个答案:

答案 0 :(得分:4)

可以使用

将分段单位的已加星标版本的条目插入到ToC中
Line 5: 9029 (Core Dumped)

其中\addcontentsline{toc}{<type>}{<content>} <type>,或section,或者......这是一个最小的例子:

enter image description here

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