使用leaflet
类,部分没有编号。如果我尝试使用
\renewcommand\thesection{\arabic{section}. }
它没有改变任何事情。
有没有办法对部分进行编号leaflet
?
答案1
这leaflet
documentclass
用途
\setcounter{secnumdepth}{0}
在线275
。要对部分进行编号,您可以使用
\setcounter{secnumdepth}{1}
然后你会得到编号的部分。
\documentclass{leaflet}
\usepackage{lipsum}
\setcounter{secnumdepth}{1}
\begin{document}
\section{My section}
\lipsum[1]
\end{document}