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