有没有办法用 5.2 子节来开始页面:
5.2 Section
5.2.5 Subsection
5.2.6 Subsection
否则,我会得到 1 个部分和 0.1 个子部分,而我并不需要它们。是否有某种包或技巧?
答案1
有没有办法用 5.2 子节来开始页面?
怎么样
\clearpage % start a new page here
\setcounter{section}{5}
\setcounter{subsection}{1}
\subsection{Hello World} % increments 'subsection' counter automatically (to "2")
答案2
看起来你想任意设置小节的编号,这是我的解决方案
\newcommand{\asubsection}[2]{
\setcounter{subsection}{#1}
\addtocounter{subsection}{-1}
\subsection{#2}
}
然后按如下方式,根据需要为您的子部分分配任意数字
\asubsection{3}{The Dirac Field}
\label{TDF}
...
\asection{12}{The Renormalization Group}
... Also read subsection \ref{TDF}.
输出如下
我们可以看到交叉引用\ref{TDF}
和公式编号使用正确的小节编号。