LATEX中怎么讲两个图并列放置之后让各自的图题在图下面居中
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LATEX中怎么讲两个图并列放置之后让各自的图题在图下面居中相关的知识,希望对你有一定的参考价值。
如图所示,想让两个图的标题能居中放置。下面是靓图并列的程序。
\beginfigure
\begincenter
\beginminipage[c]0.5\textwidth
\centering
\includegraphics[angle=0,width=8cm,height=5.6cm]tu4.eps%就在前面括号中写图片名
%\renewcommand\figurenameFigure 4. Respective throughputs of sharing bottleneck link by Vegas and Reno
\centering
\captionRespective~~throughputs~~of~~sharing~~~~~~~~bottleneck link by Vegas and Reno
\labelfig:levfig
\endminipage%
\beginminipage[c]0.5\textwidth \centering\includegraphics[angle=0,width=8cm,height=5.6cm]tu5.eps
\captionRespective throughput of sharing bottleneck link by Adaptive Vegas and Reno
\labelfig:levfig
\endminipage
\endcenter
\endfigure
用caption包就可以了。
\usepackagecaption
\captionsetupjustification=centering 参考技术B 方法很多啊,比如用表格,minipage,也可以直接用includegraphics放: \beginfigure[H]\centering \includegraphics[width=.25\textwidth]fig1.jpg \includegraphics[width=.25\textwidth]fig3.jpg \includegraphics[width=.25\textwidth]
latex如何插入图片
参考技术A方法一:插入单个图片,图片格式为png,具体代码如下。
代码解释:
第一行中的[h]:代表图片就在当前位置,有的时候latex排版的时候图片太大,而剩余的空间太小,latex就会自动将图片放在文档中的一个合适的地方;
第二行:\\centering表示图片的位置居中;
第三行:表示插入图片的长宽,后面的3代表图片的名字,这个照片在文件夹中的名字是3.png;
第四行:表示图题。
方法二:
并排插入两张图片(每张图片有自己的图题),这种方法会使latex中图片的编号顺序向后增加,具体代码如下。
方法三:
并排插入多张图片,没有小图,具体代码如下。
扩展资料:
LaTeX构筑在 PlainTeX的基础之上,并加进了很多的功能以使得使用者可以更为方便利用TeX的强大功能。使用LaTeX基本上不需要使用者自己设计命令和宏等,因此,即使使用者并不是很了解TeX,也可以在短短的时间内生成高质量的文档。对于生成复杂的数学公式,LaTeX表现更为出色。
以上是关于LATEX中怎么讲两个图并列放置之后让各自的图题在图下面居中的主要内容,如果未能解决你的问题,请参考以下文章