我使用的是cleverref
,但我希望附录的编号为Appendix 1
、Appendix 1.2
等。相反,它以Appendix A
、Appendix A.1
等字母开头。我目前有以下几行:
\documentclass[conference,compsoc]{IEEEtran}
\usepackage[noabbrev,capitalize]{cleveref}
关于如何更改附录编号有什么想法吗?
答案1
这是一个不完整的答案。
通常,您可以使用\renewcommand
after\appendix
将附录计数器更改为阿拉伯数字。但由于某种原因,cref
它不会继承此更改并显示字母计数。代码和图像如下。
\documentclass[conference,compsoc]{IEEEtran}
\usepackage[noabbrev,capitalize]{cleveref}
\begin{document}
\section{Some section}
\section{A section}
\appendix
% after appendix renew command for \thesection
\renewcommand{\thesection}{\arabic{section}}
% also in IEEEtran it seems appendices start at subsection level
\subsection{Some appendix}\label{appendix-label}
\cref{appendix-label}
\subsection{section in appendix again}\label{appendix-label2}
\cref{appendix-label2}
\end{document}