我怎样才能为五个不同页面上的五个不同图形赋予相同的图号?

我怎样才能为五个不同页面上的五个不同图形赋予相同的图号?

如何使用 latex 为五个不同页面上的五个不同图形赋予相同的图号?例如,图 1.1、图 1.1 续(玩家 I)、图 1.1 续(玩家 II)、图 1.1 续(玩家 III)、图 1.1(玩家 IV)。

答案1

\ContinuedFloat您可以使用caption包;使用\DeclareCaptionLabelFormat您可以自定义标签的格式以包含例如“(续)”;一个小例子:

\documentclass{article}
\usepackage[a6paper]{geometry}% just for the example
\usepackage{caption}

\DeclareCaptionLabelFormat{continued}{#1~#2 (Continued)}
\captionsetup[ContinuedFloat]{labelformat=continued}

\begin{document}

\begin{figure}
\centering
A
\caption{First part of a figure}
\end{figure}               

\begin{figure}
\ContinuedFloat
\centering
B
\caption{Second part of a figure}
\end{figure}               

\begin{figure}
\ContinuedFloat
\centering
C
\caption{Third part of a figure}
\end{figure}               

\end{document}

在此处输入图片描述

相关内容