为许多子浮点数添加图例:未标记的子浮点数

为许多子浮点数添加图例:未标记的子浮点数

我正在使用memoir并添加subbottom如下figure环境:

\begin{figure}
\subbottom[Blah......]
{
First figure
}
\subbottom
{
Legend goes here
}
\subbottom[Blah.....]
{
Second figure
}
\end{figure}

我该如何做才能使图例子图不耗尽一个字母,以便第一和第二个真实数字被标记为 1.a) 和 1.b)(而不是 1.c)?

我考虑过让图例成为现有人物的一部分,但这会造成我不喜欢的不平衡。

答案1

您可以手动更正计数器:

\documentclass{memoir}
\newsubfloat{figure}

\begin{document}

\begin{figure}
\centering
\subbottom[Blah......]
{%
First figure
}%
\subbottom
{%
Legend goes here
}%
\addtocounter{subfigure}{-1}%
\subbottom[Blah.....]
{%
Second figure
}%
\end{figure}

\end{document}

在此处输入图片描述

相关内容