我有两个图,我想将它们作为 2A 和 2B 显示在图列表中。此外,我希望它们都有标题。一切都正常,只是它们显示为 1a 和 1b。这是我使用的代码
\documentclass[a4paper,12pt]{extarticle}
\usepackage{float}
\usepackage{graphicx}
\usepackage{subfloat}
\begin{document}
\begin{subfigures}
\begin{figure}[H]
\centering
\includegraphics[width=0.75\textwidth]{ER-FIG2A}
\caption{\label{first}Caption text.}
\end{figure}
\begin{figure}[H]
\centering
\includegraphics[width=0.75\textwidth]{ER-FIG2B}
\caption{\label{second}Caption text.}
\end{figure}
\end{subfigures}
\end{document}
编辑:我添加了我正在使用的全部代码。我已经在谷歌上搜索过了,但是旧威胁中的任何建议都不适合我。我很感激任何建议!
答案1
如果你阅读了文档subfloat
(在命令行中输入texdoc subfloat
或转到https://texdoc.org/查阅文档),第 4 节讨论了如何更改标签格式。根据您的需要,您可以这样做
\renewcommand*\thesubfloatfigure{\themainfigure(\Alph{subfloatfigure})}