更改具有文章类别的附录的显示名称

更改具有文章类别的附录的显示名称

我愿意编写一份末尾带有附录的文档。我的工作目前由一个article类完成,在加载包后,我成功地通过命令appendix从 s 中获取了一些附录标题。不幸的是,我得到的是这样的:\section\appendix

在此处输入图片描述

而我希望附录的标题像“附件 A:销售清单”

我曾尝试修改以下命令:

\usepackage{appendix}
\makeatletter
\newcommand\backmatter{
    \def\sectionmark##1{\markboth{%
        \ifnum  \c@secnumdepth > \m@ne  \@secapp\ \thesection:  \fi  ##1}{%
        \ifnum  \c@secnumdepth > \m@ne  \@secapp\ \thesection:  \fi  ##1}}%
    \def\subsectionmark##1{\relax}}
\makeatother

但迄今为止,这一计划尚未成功。

答案1

我最终使用以下代码实现了它:

\appendix
\makeatletter
\def\@seccntformat#1{\@ifundefined{#1@cntformat}%
{\csname the#1\endcsname\quad}% 
{\csname #1@cntformat\endcsname}% 
}
\renewcommand\thesection   {\@Alph\c@section}
\def\section@cntformat{\appendixname{} \thesection\quad--\quad}
\makeatother

放在我的附录前面。

感谢@touhami 提供的链接

相关内容