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


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}

然后显示为:
在这里插入图片描述

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


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM