我是 Latex 的初学者,我想用这个软件做大学报告。但是我不知道如何在目录中“不”给我的执行摘要编号。
试图
\documentclass{article}
\usepackage[utf8]{inputenc}
\pagenumbering{alph}
\begin{document}
\tableofcontents
\clearpage
\section{Testing section}
...
\clearpage
\subsection{interesting}
\end{document}
以上是我尝试创建目录,但是我不确定从哪里开始,因为我实际上是从互联网上获取了这组代码。如果我/section{executive summary}
在目录之前创建,它将不会包含在目录中。但是,如果我在目录之后创建,它将在开头有数字。
所以我想知道我怎样才能实现这样的目标?
任何帮助将不胜感激!!
答案1
如果您不想让章节或部分没有编号,则需要将其写为
\chapter*{summary}
或为\section*{summary}
。但是,如果您这样写,它将不会显示在目录中。因此,您需要手动将其添加到目录中。
\addcontentsline{toc}{section}{Executive Summary}
以下是您问题的示例代码。
\documentclass{article}
\usepackage[utf8]{inputenc}
\pagenumbering{alph}
\begin{document}
\tableofcontents
\clearpage
\section*{Summary} %unnumbered section
\addcontentsline{toc}{section}{Executive Summary} %manually add to TOC
\clearpage
\section{Testing section}
...
\clearpage
\subsection{interesting}
\end{document}