為許多子浮點新增圖例:未標記的子浮點

為許多子浮點新增圖例:未標記的子浮點

我正在使用memoir並添加subbottomfigure這樣的環境中:

\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}

在此輸入影像描述

相關內容