最快零基础上手——latex插图
Posted 小乖乖的臭坏坏
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了最快零基础上手——latex插图相关的知识,希望对你有一定的参考价值。
在插入图片时,需要先声明与图片相关的宏包,
\\usepackage{graphicx}%宏包{用于作图}
\\begin{figure}[H]%[H]表示图片插入在代码编写的位置
\\centering%如果你想要居中图片
\\includegraphics[width=0.6\\textwidth]{figure15.pdf}%将图片尺寸设置为0.6倍的文本宽度(长宽是等比缩放的)
\\caption{
The diagnosis results of origin attention mechanism and improved attention mechanism
}%caption用于定义图标题
\\end{figure}
运行结果:
若想要插入多个子图,则需先调用subfigure宏包:
\\usepackage{subfigure}%在画图时想画子图所需要的宏包
\\begin{figure}[H]
\\centering
\\subfigure[]{
\\includegraphics[width=0.45\\textwidth]{fig13_1.pdf} %[]中可以敲入子图的小标题
}
\\subfigure[]{
\\includegraphics[width=0.45\\textwidth]{fig13_2.pdf}
}
\\DeclareGraphicsExtensions.
\\caption{The illustration of different $num_{-}heads$ and $d_{-}model$ for different performance : (a) A 3-D perspective column chart. (b) A heatmap.}
\\end{figure}
运行结果:
作于:
2021-8-6
21:39
以上是关于最快零基础上手——latex插图的主要内容,如果未能解决你的问题,请参考以下文章
最快零基础上手——latex 公式设置内联公式独立(单独)显示公式(有编号无编号)