我正在使用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}