回忆录:目录中的小写部分编号

回忆录:目录中的小写部分编号

我希望我的memoir文档中的附录使用小写字母进行编号。我已经设法对实际标题进行了编号,但我似乎不知道该如何修复目录。

\documentclass{memoir}
\usepackage{fontspec}
\setmainfont{EBGaramond-Regular}[
  BoldFont = EBGaramond-Bold,
  Numbers={Proportional, OldStyle}
]
\setsecnumformat{\textsc{\MakeLowercase{\csname the#1\endcsname}}\quad}
\begin{document}
  \tableofcontents*

  \chapter{A chapter}
  \section{A section}
  \section{Another section}
  \begin{subappendices}
    \section{An appendix}
  \end{subappendices}

  \chapter{Second chapter}
  \section{A section}
  \section{Another section}
\end{document}

目录

答案1

这是一种方法

\makeatletter
\patchcmd\numberline{\@cftbsnum #1\@cftasnum}{\@cftbsnum{#1}\@cftasnum}{}{\ERROR}
\makeatother
\renewcommand\cftsectionpresnum{\scshape\MakeLowercase}

相关内容