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. SQLServer BI 学习笔记

    MSBI 学习库: https://ask.hellobi.com/blog/biwork SSAS库部署的几种方式 http://www.cnblogs.com/aspnetx/archive/20 ...

  2. 【Linux 线程】常用线程函数复习《二》

    1.函数pthread_join /************************************************************************* > Fil ...

  3. python脚本删除文件与目录的命令

    1. 删除文件的命令 import os os.remove(file) os.unlink(file) 2.删除目录的命令 import shutil shutil.rmtree(directory ...

  4. linux查看本服务端口开放情况

    在Linux使用过程中,需要了解当前系统开放了哪些端口,并且要查看开放这些端口的具体进程和用户,可以通过netstat命令进行简单查询. 1.netstat命令各个参数说明如下: -t : 指明显示T ...

  5. Oracle的SQL语句中如何处理‘&’符号

    ‘&’符号在SQL中有特殊含义,所以在SQL中想要写入&,需要特殊处理. 如下SQL语句就不能正确运行: SQL> select 'a&b' from dual; 处理方 ...

  6. Hyperscan与Snort的集成方案

    概况 Hyperscan作为一款高性能的正则表达式匹配库,非常适用于部署在诸如DPI/IPS/IDS/NGFW等网络解决方案中.Snort (https://www.snort.org) 是目前应用最 ...

  7. 解决CentOS7-python-pip安装失败

    Pip介绍 pip 是一个安装和管理 Python 包的工具,python安装包的工具有easy_install, setuptools, pip,distribute.使用这些工具都能下载并安装dj ...

  8. 测试 Open Live Writer

    我要试试. 看看图片如何: 这是从电脑端上传的一个例子,如果编辑器里可以支持复制粘贴图片就好了. Open Live Writer 发布以后,还可在保存在本地,想起来的时候就修改一下. 再美化一下. ...

  9. struts2升级

    http://www.blogjava.net/ldwblog/archive/2013/10/14/404944.html

  10. PHP字符串反转

    function getRev($str,$encoding='utf-8'){ $result = ''; $len = mb_strlen($str); for($i=$len-1; $i> ...