有一个简单的方法可以只修改这个命令
\renewcommand\thesection{\arabic{section}.}
为了得到一个只有一个前导零的阿拉伯计数器,而不是没有前导零的原始阿拉伯计数器?
答案1
这个小文档在章节编号前面添加了一个前导零,并在循环中使用15
虚拟\blinddocument
命令来填充。
\documentclass{article}
\usepackage{blindtext}
\makeatletter
\let\latex@@thesection\thesection
\newcommand{\padwithzero}{%
0%
}%
\renewcommand{\thesection}{\ifnum\c@section<10\relax\padwithzero\fi\latex@@thesection}
\newcount\dummycntr
\makeatother
\begin{document}
\tableofcontents
\loop\unless\ifnum\dummycntr=15
\begingroup
\blinddocument
\endgroup
\advance\dummycntr by 1
\repeat
\end{document}