如何使用 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}