使用 LaTeXbook
文档类和subfigure
包,长度\subfigtopskip
和\subfigbottomskip
可用。
如果使用 documentclass,它们的等价物是什么?memoir
没有包裹subfigure
?
提问原因
我想要实现的memoir
是在两个并排放置的子图之间插入一个比默认值更大的空间,如下所示:
\documentclass{memoir}
\newsubfloat{figure} % needed for subfigure numbering with memoir
\begin{document}
\begin{figure}
\begin{center}
%
\subbottom[Point inside the ball.]{%
\rule[2mm]{4.5cm}{5mm}% will be picture file
}%
%
\hfill %% but want: \hspace*{something}
%
\subbottom[Point outside the disk.]{%
\rule[2mm]{4.5cm}{5mm}% will be picture file
}%
%
\end{center}
\end{figure}
\end{document}
使用book
文档类,我可以这样做:
\documentclass{book}
\usepackage[hang,small]{subfigure}
\begin{document}
\begin{figure}[!h]
%
\newcommand{\goodgap}{\hspace{\subfigtopskip}\hspace{\subfigbottomskip}}
%
\begin{center}
%
\mbox{%
\subfigure[Point inside the ball.]{%
\rule[2mm]{4.5cm}{5mm}}% will bepicture file
%
\goodgap\goodgap%
%
\subfigure[Point outside the disk.]{%
\rule[2mm]{4.5cm}{5mm}}% picture file
}
%
\end{center}
\end{figure}
\end{document}