为了写我的论文,我使用
\documentclass[a4paper,12pt]{book}
我添加了两章,然后附加了一篇带有两个附录的文章。
问题是两个附录在目录中都有编号 3.A。我将其用于附录
\usepackage[titletoc]{appendix}
\renewcommand\@pnumwidth{2.15em}
\renewcommand\@tocrmarg{3.15em} % \@tocrmarg-\@pnumwidth=1
\usepackage{mwe}
\usepackage{appendix}
\usepackage{etoolbox}
\BeforeBeginEnvironment{appendices}{\edef\TheChapter{\thechapter}}
\AtBeginEnvironment{appendices}{\renewcommand\thesection{\TheChapter.\Alph{section}}}
我怎样才能将第二个的数字改为3.B?
谢谢
答案1
该问题与问题中的代码无关,但如评论中所示,您应该只有一个appendices
环境(因为这会重置计数器),而不是每个附录周围都有一个环境。