当前位置:   article > 正文

Overleaf / Latex 中插入 一张/并排两张图片_latex图片并列放置

latex图片并列放置

插入图片

在开头导入包

  1. \usepackage{graphicx} %导入包
  2. \graphicspath{ {image/} } %image为文件夹名,可以在左侧自己创建文件夹

插入一张图片

  1. \begin{figure*}[htbp] %不带*单栏,带*双栏
  2. \centering
  3. \includegraphics[width=0.9\textwidth]{Fig1.jpg} % 0.9为相对于文本长度的缩放比例,Fig.jpg文件名
  4. \caption{System Model} % 图片名称
  5. \label{FIG:1}
  6. \end{figure*}

并排插入两张图片

  1. \begin{figure}[htbp]
  2. \centering %图片全局居中
  3. \subfigure[]{
  4. \includegraphics[width=5cm,height = 6cm]{Figure 2(a).png}}
  5. \subfigure[]{
  6. \includegraphics[width=7cm,height = 5cm]{Figure 2(b).png}}
  7. \caption{Graphical data: (a) F-V curve, and (b) Volume-Time curve.}
  8. \end{figure}

 讲解一下这个代码:
1、在\subfigure后面是子图片名称
2、在\includegraphics可以在 [ ] 中定义每张图片的大小,这里推荐直接用cm为单位,后面的{}里面就是要插入的图片的名称了
3、\caption就是对这两张图片整体的描述了

结果图

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/77426
推荐阅读
相关标签
  

闽ICP备14008679号