如何设置以 0 为前导填充的部分?

如何设置以 0 为前导填充的部分?

我正在为某人格式化一份文档,他希望每个部分编号长度为三位数,以 000 开头,并在需要时填充零。

我发现了类似的问题,并尝试改编这个例子,但它给了我一个

! TeX capacity exceeded, sorry [input stack size=5000].
\thesection ->\thesection 
                          .\three@digits {\value {section}}
l.11 \section{Synopsis}

If you really absolutely need more capacity,
you can ask a wizard to enlarge me.

我的 MNWE 是:

 \documentclass[letterpaper]{article}

 %Padding the leading zeros \makeatletter
 \renewcommand\thesection{\thesection.\three@digits{\value{section}}}
 \makeatother

 \begin{document} \setcounter{section}{-1} \tableofcontents
 \section{Synopsis} foo

 \section{Language} bar

 \section{Legal} baz

 \end{document}

答案1

\three@digits不存在核心默认情况下。但是,您可以定义它,并且还需要调整与目录相关的章节数字间距:

在此处输入图片描述

\documentclass[letterpaper]{article}
\usepackage{etoolbox}% http://ctan.org/pkg/etoolbox

%Padding the leading zeros
\makeatletter
\patchcmd{\l@section}{1.5em}{2em}{}{}% Adjust section ToC number width
%\def\two@digits#1{\ifnum#1<10 0\fi\number#1}% http://mirrors.ctan.org/macros/latex/unpacked/latex.ltx
\def\three@digits#1{\ifnum#1>99\else\ifnum#1>9 0\else00\fi\fi\number#1}
\renewcommand\thesection{\three@digits{\value{section}}}
\makeatother

\begin{document} 
\setcounter{section}{-1}
\tableofcontents
\section{Synopsis} foo

\section{Language} bar

\section{Legal} baz

\end{document}

使用etoolbox补丁。您可能还想调整\subsection间距,其定义为

\newcommand*\l@subsection{\@dottedtocline{2}{1.5em}{2.3em}}

默认情况下(从article.cls)。这1.5em是缩进,2.3em这是数字的空间。因此,您可能要使用

\renewcommand*\l@subsection{\@dottedtocline{2}{2em}{3em}}

说。


有关用零填充计数器的更多信息,请参阅如何输出带有前导零的计数器?

相关内容