
나는 다음과 같은 환경을 사용 memoir
하고 추가하고 subbottom
있습니다 figure
.
\begin{figure}
\subbottom[Blah......]
{
First figure
}
\subbottom
{
Legend goes here
}
\subbottom[Blah.....]
{
Second figure
}
\end{figure}
첫 번째와 두 번째 실제 그림이 1.c가 아닌 1.a) 및 1.b)로 표시되도록 범례 하위 그림이 문자를 사용하지 않도록 하려면 어떻게 해야 합니까?
전설을 기존 인물 중 하나에 포함시키는 것을 고려했지만 마음에 들지 않는 불균형이 발생했습니다.
답변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}