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

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-03-01
  • 2021-11-29
  • 2021-06-19
  • 2022-12-23
猜你喜欢
  • 2021-12-13
  • 2022-01-13
  • 2022-01-16
  • 2022-01-01
  • 2021-06-16
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案