将图片标题中的数字与字母交换

将图片标题中的数字与字母交换

我有很多图,它们的编号如下:图 1.1,...,图 8.5。在这两者之间,我有两个特殊的图,我想称之为图 A 和 B,因此图的编号如下:

图 1.1,...,图 2.2,图 A,图 2.3,...,图 5.6,图 B,图 6.1,...

我尝试使用 caption 包,但没有找到命令。是否有类似的东西:

\documentclass{ThesisTemplate}

\usepackage{graphicx}
\usepackage{caption}

\begin{document}    

\begin{figure}
\centering
\includegraphics[width=1.\linewidth]{./figs/special_figure}
\captionsetup{letter="A"}
\caption{Description of special figure}
\label{fig:special}
\end{figure}

\end{document}

相关内容