1.竖排插入两张图

 \begin{figure}[h]  //放在当前位置
\centering
\subfigure[A given traffic flow set]{
\includegraphics[width=.2in]{image/7_IndirectBlocking.eps}} \centering
\subfigure[The time line graph]{
\includegraphics[width=.7in]{image/8_IndirectBlockingTimeGraph.eps}}
\caption{An example of indirect blocking}
\end{figure}

2.横排插入两张图

 1 \begin{figure*}[t]   //*表示可跨栏,如果不需要可去掉
2 \centering
3 \subfigure[SMART 2D 4*4]{
4 \includegraphics[width=3.3in]{figure/figure3.eps}}
5 \hfill
6 \centering
7 \subfigure[SMART 2D 6*6]{
8 \includegraphics[width=3.3in]{figure/figure4.eps}}
9 \caption{The performance of our algorithm compared with Rate Monotonic and Laxity Monotonic priority assignment algorithms on four different mesh sizes, in terms of the percentage of traffic flows deemed to be schedulable}
10 \end{figure*}

3.插入2*2图

 \begin{figure*}[t]
\centering
\subfigure[SMART 2D *]{
\includegraphics[width=.3in]{figure/figure3.eps}}
\hfill
\centering
\subfigure[SMART 2D *]{
\includegraphics[width=.3in]{figure/figure4.eps}}
\vfill
\centering
\subfigure[SMART 2D *]{
\includegraphics[width=.3in]{figure/figure5.eps}}
\hfill
\centering
\subfigure[SMART 2D *]{
\includegraphics[width=.3in]{figure/figure6.eps}} \caption{The performance of our algorithm compared with Rate Monotonic and Laxity Monotonic priority assignment algorithms on four different mesh sizes, in terms of the percentage of traffic flows deemed to be schedulable}
\end{figure*}

Latex插图操作的更多相关文章

  1. matlab作图 latex插图

    推荐用saveas eps,再用eps2pdf转成pdf.这样可以之间pdflatex编译. if result.savepic saveas(gcf,[ pwd '/picture/right_' ...

  2. Latex技巧:LaTex插图命令includegraphics参数详解

    Latex插图的命令是\includegraphics[选项]{文件} 这里的选项在表 7.1, 7.2, 7.3 中列出. 因为 \includegraphics 不会结束 当前段落,所以它能够在文 ...

  3. LaTeX技巧012:LaTeX 插图加载宏包

    LaTeX 插图加载宏包.支持 LaTeX - DVIPDFMx; pdfLaTeX; XeLaTeX 三种编译方式,支持 eps/pdf/jpg/png 等图片格式. % Put this snip ...

  4. latex插图续

    LaTeX中一般只直接支持插入eps(Encapsulated PostScript)格式的图形文件, 因此在图片插入latex文档之前应先设法得到图片的eps格式的文件.  UNIX下的各种应用软件 ...

  5. [LaTex]插图

    1.不错的Latex参考网站 http://www.ctex.org/documents/latex/graphics/node120.html http://www.ctex.org/documen ...

  6. latex 插图排版

    LaTeX的图片插入及排版   LaTeX中一般只直接支持插入eps(Encapsulated PostScript)格式的图形文件, 因此在图片插入latex文档之前应先设法得到图片的eps格式的文 ...

  7. Latex:入门教程

    http://blog.csdn.net/pipisorry/article/details/54571521 总的来说,LaTex是一套排版系统,与word那种所见即所得对排版方式不太,用LaTex ...

  8. Latex 学习之旅

    学习资料 A simple guide to LaTeX - Step by Step LaTeX WikiBook LaTeX 科技排版 TeXdoc Online (TeX and LaTeX d ...

  9. LaTeX 图片色偏解决方法

    本系列文章由 @YhL_Leo 出品,转载请注明出处. 文章链接: http://blog.csdn.net/yhl_leo/article/details/50327113 在LaTeX的编辑模式中 ...

随机推荐

  1. string类的一些函数方法

    1.请查看String.equals()方法的实现代码,注意学习其实现方法: (1)源程序: public class StringEquals { /** * @param args the com ...

  2. 如何禁止chrome自动跳转https

    请在chrome的地址栏输入: chrome://net-internals/#hsts 在打开的页面中, Delete domain 栏的输入框中输入:xx.xx.com(注意这里是二级域名),然后 ...

  3. Delphi:MSBuild编译dproj工程

    Delphi之命令行编译工程,传统是用dcc32来编译的,它需要设置一大堆参数. 自Delphi 2007以后,支持MSBuild编译,它直接编译.dproj工程文件,所有编译需要的东西,都已在其中设 ...

  4. java发送http连接

    原生方式:@转载文章 import java.io.BufferedReader; import java.io.InputStream; import java.io.InputStreamRead ...

  5. iPhone X系列 的获取 - 安全区顶部和底部高度

    ///1. 获得当前窗口 var JY_WINDOW: UIWindow? { get{ if let app = UIApplication.shared.delegate as? AppDeleg ...

  6. c#引用命名空间的作用

    System 包含用于定义常用值和引用数据类型.事件和事件处理程序.接口.属性和处理异常的基础类和基类.其他类提供支持下列操作的服务:数据类型转换,方法参数操作,数学计算,远程和本地程序调用,应用程序 ...

  7. JS获取Dropdownlist选中值

    var dropDownList = document.getElementById("ddl_sheng"); //获取DropDownList控件 var dropDownLi ...

  8. 使用PreparedStatement时,输出完整的SQL语句

    使用psstmt时不能打印出完整的sql语句,挺不方便的,找到一个实现方法,记录下来. package com.zhh.function.util; import java.io.InputStrea ...

  9. Liunjx 文件

    cat命令的用途是连接文件或标准输入并打印.这个命令常用来显示文件内容,或者将几个文件连接起来显示,或者从标准输入读取内容并显示,它常与重定向符号配合使用. 1.命令格式: cat [选项] [文件] ...

  10. C# 获取 存储过程 返回值

    C#获取存储过程的返回值,这一方法,总是容易忘,今天给贴出来,以方便下次使用 存储过程: CREATE  PROCEDURE [dbo].[Proc_GetInfo]     ),     ) out ...