多页上的图的子图 [英] Subfigs of a figure on multiple pages

查看:16
本文介绍了多页上的图的子图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我面临堆叠许多数字的问题

问题是堆栈图形垂直覆盖页面尺寸并将所有图形放在一页中,并且在达到页面限制时不更改页面.

如何在堆叠所有图形时更改页面.

usepackage{subfig}usepackage{浮动}egin{图}[hp]定心subfloat[Fig1]{label{fig:1}includegraphics[width=0.48	extwidth]{fig1}}subfloat[Fig2]{label{fig:2}includegraphics[width=0.48	extwidth]{fig2}}subfloat[Fig3]{label{fig:3}includegraphics[width=0.48	extwidth]{fig3}}subfloat[Fig4]{label{fig:4}includegraphics[width=0.48	extwidth]{fig4}}subfloat[Fig5]{label{fig:5}includegraphics[width=0.48	extwidth]{fig5}}subfloat[Fig6]{label{fig:6}includegraphics[width=0.48	extwidth]{fig6}}标题{........}标签{..........}结束{图}

非常感谢您的帮助.

解决方案

egin{figure}...end{figure} 内的所有内容都不能更大而不是一页.为了分页,您必须手动完成.使用 subfig 包中的 ContinuedFloat 来执行此操作:(来自 子图文档,§2.2.3)

<上一页>开始{图}定心subfloat[][]{...图代码...}%qquadsubfloat[][]{...图代码...}caption{这里是续图的前两个数字.}标签{图:续}结束{图}开始{图}续浮动定心subfloat[][]{...图代码...}%qquadsubfloat[][]{...图代码...}caption[]{这是续图的最后两个数字.}标签{图:续}结束{图}

I am facing problem of stacking many figures

The problem is the stack figure is overriding the page dimension vertically and placing all the figure in one page and not changing the page as the limitation of page is reached.

How can page be changed while stacking all the figures.

usepackage{subfig}
usepackage{float}
egin{figure}[hp]
centering
subfloat[Fig1]{label{fig:1}includegraphics[width=0.48	extwidth]{fig1}}
subfloat[Fig2]{label{fig:2}includegraphics[width=0.48	extwidth]{fig2}}
subfloat[Fig3]{label{fig:3}includegraphics[width=0.48	extwidth]{fig3}}
subfloat[Fig4]{label{fig:4}includegraphics[width=0.48	extwidth]{fig4}}
subfloat[Fig5]{label{fig:5}includegraphics[width=0.48	extwidth]{fig5}}
subfloat[Fig6]{label{fig:6}includegraphics[width=0.48	extwidth]{fig6}}
caption{........}
label{..........}
end{figure}

I shall be very thankfull for your kind help.

解决方案

Everything inside egin{figure}...end{figure} must not be larger than a single page. In order to break it over pages, you must do it manually. Use ContinuedFloat from the subfig package to do this: (from the subfig documentation, §2.2.3)


egin{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}

egin{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} 

这篇关于多页上的图的子图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆