答案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}{}