我怎样才能在报告中写第 1 节而不是第 1.1 节并将其显示在
目录中,这是我找到的唯一解决方案,但这不会在目录中显示该部分
\section*{Section 1 :ABC}
答案1
您的问题不完整,因为您没有说明您使用的是哪个文档类别。
不过,我假设您使用的是report
或book
,即包含章节的类。由于章节必须具有唯一编号,因此该编号以章节编号为前缀。
因此您可能想要使用article
没有章节的类,因此章节编号没有前缀。
答案2
我不太明白你最终想要什么。你正在使用report
具有\chapter
和\section
命令的类,其中节号前面是章节号。也许你应该使用类article
,比如
% \documentclass{report} %% orginal class usage
\documentclass{article} %% now using article class
但是,在report
(或book
)类中,您可以从节编号中删除章节编号,如下所示。
% secnumprob.tex SE 643700
\documentclass{report}
\begin{document}
\tableofcontents
\section{By itself}
\chapter{First}
\section{Alpha}
\section{Beta}
\renewcommand{\thesection}{\arabic{section}}
\chapter{Second}
\section{Gamma}
\section{Epsilon}
\chapter{Third}
\section{Eins}
\section{Drei}
\end{document}