[转载]ContinuedFloat:LaTex多子图换页
(2022-03-20 19:15:14)
标签:
转载 |
原文地址:ContinuedFloat:LaTex多子图换页作者:潜水艇
在撰写Latex文档时,如果要将在一幅图中包括多幅子图,
可以用subfig包。但是这也带来一个问题,就是如果子图
过多需要换页。
subfig包中提供了一个ContinuedFloat命令,来帮助实现
这一功能。看个例子:
begin{figure}%
centering
subfloat[][]{...figure code...}%
qquad
subfloat[][]{...figure code...}
caption{Here are the first two figures of a continued
figure.}%
label{fig:cont}%
end{figure}
begin{figure}%
ContinuedFloat
centering
subfloat[][]{...figure code...}%
qquad
subfloat[][]{...figure code...}
caption[]{Here are the last two figures of a continued
figure.}%
label{fig:cont}%
end{figure}
上面这段代码有两个figure环境,第一个环境中的figure在一个页面,
第二个环境中的figure在后续页面,而它们之间通过
ContinuedFloat
命令连接
这样的话,只要前后两个figure的caption和label一致,就可以了。
可以用subfig包。但是这也带来一个问题,就是如果子图
过多需要换页。
subfig包中提供了一个ContinuedFloat命令,来帮助实现
这一功能。看个例子:
begin{figure}%
end{figure}
begin{figure}%
end{figure}
上面这段代码有两个figure环境,第一个环境中的figure在一个页面,
第二个环境中的figure在后续页面,而它们之间通过
ContinuedFloat
命令连接
这样的话,只要前后两个figure的caption和label一致,就可以了。
前一篇:beamer定理编号