我正在为我的文章使用自定义样式,其中部分是顶部标题,并且没有对部分、小节等进行编号
我希望保持其原样,但对我的附录使用字母编号。
有人有想法吗?
一位 MWE 表示:
\documentclass[letterpaper,Arial,9pt]{sae}
\usepackage{amsmath}
\usepackage{lipsum}
\usepackage[titletoc,toc,title]{appendix}%5,page
\begin{document}
kjasww
\section{section}
\lipsum[1]
\appendix
\setcounter{section}{0}
\renewcommand{\thesection}{\Alph{section}}
%\begin{appendices}
\begin{appendices}
\section{Appendix}
\lipsum[1]
\end{appendices}
样式文件可以找到这里;
答案1
文档sae
类包含指令
\setcounter{secnumdepth}{-2}
此指令抑制所有低至 的节标题的编号part
,其级别为-1
。 的级别chapter
为0
, 的级别为section
,1
为subsection
,2
等等。
因此,要(重新)启用节级标题的编号,您需要提供指令
\setcounter{secnumdepth}{1}
随着\appendix
。