LaTeX中一组图片分页显示的方法

原文链接:https://en.wikibooks.org/wiki/LaTeX/Floats,_Figures_and_Captions

Sometimes you need to divide up a figure over multiple floats, for instance because the figure is too big to fit on one page. In this case you can use continued figures using the caption package.

Put this in your preamble:

\usepackage{caption}
\DeclareCaptionLabelFormat{cont}{#1~#2\alph{ContinuedFloat}}
\captionsetup[ContinuedFloat]{labelformat=cont}

Then you can use continued floats as follows.

\begin{figure}
	\ContinuedFloat*
	\[ e^{i \pi} + 1 = 0 \]
	\caption{Euler's identity, first form.}
\end{figure}
\begin{figure}
	\ContinuedFloat
	\[ e^{i \pi} = -1 \]
	\caption{Euler's identity, second form.}
\end{figure}

然后显示为:
LaTeX中一组图片分页显示的方法

本文转载自:https://en.wikibooks.org/wiki/LaTeX/Floats,_Figures_and_Captions

上一篇:HTML5新增常用标签


下一篇:php – WordPress 3.9.x – 从图元素中删除内联宽度