抱歉,问题格式错误,但我是新手,不知道如何使用这些工具。我想知道是否有办法从文档中删除章节号(最好没有任何序言行)。例如,如果我有:
\chapter{chap1}
\chapter{chap2}
\section{sec1}
\subsection{subsec1}
然后,sec1 有数字2.1
,subsec1 也有数字,2.1.1.
我想删除“2”,所以在这个特定的章节中我有1.1
subsec1 和1
sec1。
答案1
如果不想preamble
使用任何命令,则必须在文档主体内部进行,重新定义\thesection
,然后调用旧定义以将其恢复为1.1.1
等样式。
请注意,这会导致ToC
\documentclass{book}
\begin{document}
\tableofcontents
\let\origthesection\thesection % Store the old definition
\chapter{chap1}
\chapter{chap2}
\renewcommand{\thesection}{\arabic{section}} % Kick out the chapter number
\section{sec1}
\subsection{subsec1}
\renewcommand{\thesection}{\origthesection} % Restore to the old style
\chapter{chap 3}
\section{sec1}
\subsection{subsec1}
\end{document}