LaTeX技巧心得236:如何要将图形与标题均置于盒子中
发布网友
发布时间:2022-04-22 01:08
我来回答
共1个回答
热心网友
时间:2024-04-04 03:53
因此
\begin{figure}\centering\caption{Caption Above Graphic}
\includegraphics[width=2in]{graphic.eps}
\end{figure}
生成的图中标题和图形非常接近。
标题上下方的间距由长度\abovecaptionskip 和\belowcaptionskip (缺省分别为10pt 与零)。可以用标准的LATEX 命令\setlength 和\addtolength来修改这些长度。例如:
\begin{figure}
\setlength{\abovecaptionskip}{0pt}
\setlength{\belowcaptionskip}{10pt}\centering\caption{Caption Above Graphic}
\includegraphics[width=2in]{graphic.eps}
\end{figure}
得到图。其中标题的上方没有额外的空白,与图形之间则有10pt 的距离。
如果一个文档的所有浮动对象的标题都位于该对象的上方,那么可将命令
\setlength{\abovecaptionskip}{0pt}
\setlength{\belowcaptionskip}{10pt}
放到导言区里,从而对整个文档都起作用。如果只是有一部分标题要求位于浮动对象的上方,那么可定义如下的命令:
\newcommand{\topcaption}{%