回忆录 附录无章节编号

回忆录 附录无章节编号

假设我有一份包含多个章节的回忆录文档。在每一章的末尾,我想使用以下代码添加一个或多个附录:

\namedsubappendices
\begin{subappendices}
\section{Foo1}
\section{Foo2}
\end{subappendices}

例如在第 2 章中,这些将被称为

Appendix 2.A Foo1
Appendix 2.B Foo2

不过,我更希望他们被称为

Appendix A Foo1
Appendix B Foo2

也就是说,我想从附录编号中删除章节编号。我怀疑这需要我临时更改每个附录内的章节编号,但即使这样我也不知道该怎么做。

答案1

您可以简单地\thesectionsubappendices环境中重新定义:

\documentclass{memoir}

\begin{document}
\chapter{A chapter}
\namedsubappendices
\begin{subappendices}
\renewcommand{\thesection}{\Alph{section}}
\section{One}
\section{Two}
\end{subappendices}
\chapter{A chapter}
\section{A section}
\end{document}

相关内容