Latex插图操作
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插图操作的更多相关文章
- matlab作图 latex插图
推荐用saveas eps,再用eps2pdf转成pdf.这样可以之间pdflatex编译. if result.savepic saveas(gcf,[ pwd '/picture/right_' ...
- Latex技巧:LaTex插图命令includegraphics参数详解
Latex插图的命令是\includegraphics[选项]{文件} 这里的选项在表 7.1, 7.2, 7.3 中列出. 因为 \includegraphics 不会结束 当前段落,所以它能够在文 ...
- LaTeX技巧012:LaTeX 插图加载宏包
LaTeX 插图加载宏包.支持 LaTeX - DVIPDFMx; pdfLaTeX; XeLaTeX 三种编译方式,支持 eps/pdf/jpg/png 等图片格式. % Put this snip ...
- latex插图续
LaTeX中一般只直接支持插入eps(Encapsulated PostScript)格式的图形文件, 因此在图片插入latex文档之前应先设法得到图片的eps格式的文件. UNIX下的各种应用软件 ...
- [LaTex]插图
1.不错的Latex参考网站 http://www.ctex.org/documents/latex/graphics/node120.html http://www.ctex.org/documen ...
- latex 插图排版
LaTeX的图片插入及排版 LaTeX中一般只直接支持插入eps(Encapsulated PostScript)格式的图形文件, 因此在图片插入latex文档之前应先设法得到图片的eps格式的文 ...
- Latex:入门教程
http://blog.csdn.net/pipisorry/article/details/54571521 总的来说,LaTex是一套排版系统,与word那种所见即所得对排版方式不太,用LaTex ...
- Latex 学习之旅
学习资料 A simple guide to LaTeX - Step by Step LaTeX WikiBook LaTeX 科技排版 TeXdoc Online (TeX and LaTeX d ...
- LaTeX 图片色偏解决方法
本系列文章由 @YhL_Leo 出品,转载请注明出处. 文章链接: http://blog.csdn.net/yhl_leo/article/details/50327113 在LaTeX的编辑模式中 ...
随机推荐
- f5时间设置
方法一:NTP(推荐) 注:修改ntp server后大约需要10分钟左右才能同步成功. 查看ntp状态: 方法二:手动修改
- 项目总结09:select标签下封装option标签
项目中经常用到Select标签,用封装好的方法获取option,可以避免冗赘的代码: 1.JSP--标签 <select class="width_md" name=&quo ...
- Hive和并行数据仓库的比较
最近分析和比较了Hive和并行数据仓库的架构,本文记下一些体会. Hive是架构在Hadoop MapReduce Framework之上的开源数据分析系统. Hive具有如下特点: 1. 数据以HD ...
- 【linux C】C语言中常用的几个函数的总结【二】
3.fgets 虽然用 gets() 时有空格也可以直接输入,但是 gets() 有一个非常大的缺陷,即它不检查预留存储区是否能够容纳实际输入的数据,换句话说,如果输入的字符数目大于数组的长度,get ...
- idea不识别yml配置文件,怎么办?
问题描述: 如下图,新建的springboot项目,添加了自定义的配置文件后,2.yml无法像上方文件的一样,被识别成配置文件! 虽然可能不会影响项目(不确定),但问题不解决,根本没有心情开始下一 ...
- java 编解码
decoder:解码--> 将文件内容转换为字符对象: encoder:编码-->将字符对象转换为字节或者字节数组: ASCII (American Standard for Infor ...
- python3.x:No matching distribution found for PIL
安装完成即可解决无法引入PIL的问题.
- Linux移植之make uImage编译过程分析
编译出uboot可以运行的linux内核代码的命令是make uImage,下面详细介绍下生成linux-2.6.22.6/arch/arm/boot/uImage的过程: 1.vmlinux.Ima ...
- visual studio 2017 30天到期,不能输入注册码
官网下载了visual studio 2017后,第一次安装没有登陆,导致只有30天试用期,虽然还在试用期内,但是无法使用注册码永久使用 解决办法: 1.注册一个微软账号,直接百度搜索“微软账号登陆” ...
- yii2.0增删改查
//关闭csrf public $enableCsrfValidation = false; 1.sql语句 //查询 $db=\Yii::$app->db ->createCommand ...