目录在哪里?(文章类)

目录在哪里?(文章类)

我的目录在哪里?我看了看使用文章和报告类别的目录这是我的 MWE。根据评论者的说法,三级以下的所有内容都应该出现 - 但是 ToC 文件(是的,我运行了两次 LaTeX)是零字节文件,因此没有生成 ToC。

\documentclass[12pt,a4paper]{article}
\usepackage{graphicx}
\usepackage{ulem}
\usepackage{amsmath}
%\usepackage{tocloft}  didn't do anything. 
\usepackage{fancyhdr}
\pagestyle{fancy}
\lhead{\footnotesize{important info}}
\chead{}
\rhead{}
\lfoot{}
\cfoot{}
\rfoot{\footnotesize{less-important info}}
\title{boring article}
\author{troubled author}
\date{}
%\setcounter{tocdepth}{3} this is the default. I've tried other values.
\usepackage{mathpazo} nice fonts.
\begin{document}
\maketitle
\tableofcontents
\begin{center}\textbf{Part $[$1$]$: General Provisions}\end{center}
\section*{Article $[$1$]$ Definitions}
 Blah blah blah
\section*{Article $[$2$]$ More Definitions} 
Blah blah
\end{document}

我遗漏了什么? fancyheader 包会造成干扰吗?

答案1

总结一下评论中的提示:

\documentclass[12pt,a4paper]{article}
\begin{document}

\tableofcontents

\section*{I'm not in the toc}
 Blah blah blah
\section{I'm in the toc and I'm numbered}
Blah blah blah

\setcounter{secnumdepth}{-1}
\section{I'm in the toc and I'm not numbered}

Blah blah blah
\end{document}

在此处输入图片描述

相关内容