创建未编号的章节

创建未编号的章节

我希望我的书中的章节没有编号。这意味着它不会显示在目录中,并且它还会成为章节前的前缀。它看起来会像这样:

在此处输入图片描述

编辑:指的是数字。因此,我不希望出现章节编号,但我希望章节标题显示在目录中。图片是目录。

答案1

使用\chapter*(不会放入目录中)代替 ,\chapter并将\section编号更改为不包括基于 的数字\chapter

\documentclass{book}
\makeatletter
  \renewcommand*{\thesection}{\@arabic\c@section}
\makeatother
\begin{document}
\tableofcontents
\chapter*{Vay}
  \section{one}
  \subsection{subsection}
  \section{two}
\chapter*{Woohoo}
  \section{three}
  \subsection{subsection}
\end{document}

编辑:

以上内容解决了我认为是 OP 的问题,但随后 OP 澄清了这个问题。

\documentclass{book}
\usepackage{chngcntr}
\renewcommand{\thechapter}{} % from @JLeonV answer
\counterwithout{section}{chapter} % don't reset section numbers by chapter
\begin{document}
\tableofcontents
\chapter{Vay}
  \section{one}
  \subsection{subsection}
  \section{two}
\chapter{Woohoo}
  \section{three}
  \subsection{subsection}
\end{document}

上述操作将\chapter在文档的目录和正文中产生未编号的\section,并且下面连续编号。

答案2

一种快捷方法是使用下一个代码重新定义章节计数器的显示格式。

\renewcommand{\thechapter}{} 

相关内容