如何在使用 \cref{} 引用附录中的小节时删除“A”?

如何在使用 \cref{} 引用附录中的小节时删除“A”?

我想知道如何才能删除使用 \cref{} 引用附录中的小节时的“A”?

我有以下伪代码。

\documentclass{IEEEtaes}
\usepackage[capitalize]{cleveref}
\usepackage{lipsum}

\begin{document}
\section{Section title}
\lipsum[2] \cref{app:subsec2}.

\appendix
\subsection{Subsection title}
\label{app:subsec1}

\subsection{Another subsection title}
\label{app:subsec2}
\end{document}

就我的情况而言,“\cref{app:subsec2}”的输出是“附录 AB”

我希望输出是“附录 B”。

非常感谢。

相关内容