Latex之图片排列的简单使用(以MiKTeX工具为例)

一、参考资料

Latex如何插入图片
Latex 学术撰写工具推荐(在线、Windows、Mac、Linux)
关于Latex并排多张图片及加入图片说明的方法

二、准备工作

1. 在线LaTex工具

Overleaf

2. 本地LaTex工具

MiKTeX

3. 测试用例

\documentclass{article} 
\title{A Test for TeXstudio} 
\author{Dale} 
\begin{document} \maketitle\tableofcontents \section{Hello China} China is in East Asia. \subsection{Hello Beijing} Beijing is the capital of China. \subsubsection{Hello Dongcheng District} \paragraph{Hello Tian'anmen Square}is in the center of Beijing \subparagraph{Hello Chairman Mao} is in the center of Tian'anmen Square 
\end{document} 

输出结果

在这里插入图片描述

三、图片排列

图片路径:若图片与源代码在同一路径,则引用相对路径即可,否则引用绝对路径。通常将图片放在与latex文档相同的路径下。

图片格式:图片格式采用 .eps 矢量格式会更清晰;

1. 单张图片

\documentclass{article}
\usepackage{graphicx}  % 插入图片所需引入的宏包
\graphicspath{{Figures/}{logo/}}  % 图片文件夹
\begin{document}  
\begin{figure}[htbp]  % 调整图片排版位置选项\centering\begin{minipage}{0.9\linewidth} \centerline{\includegraphics[width=\textwidth]{2.png}}  % 插入图片\centerline{image1}   % 插入图注\end{minipage}\caption{Visual comparisons of original models.  }\label{fig4}
\end{figure}
\end{document} 

参数解释

  • \usepackage{graphicx} 为插入图片所需引入的宏包;
  • [htbp] 为调整图片排版位置选项
    • [h] 当前位置。将图形放置在正文文本中给出该图形环境的地方。如果本页所剩的页面不够,这一参数将不起作用。
    • [t] 顶部。将图形放置在页面的顶部。
    • [b] 底部。将图形放置在页面的底部。
    • [p] 浮动页。将图形放置在一只允许有浮动对象的页面上。
  • \centering 为图片居中命令;
  • \includegraphics{1.jpg} 用于插入图片,可用 [ ] 添加图片尺寸,例如:\includegraphics[width=9.5cm,height=8cm]{1.png},花括号中为图片相对路径。若图片较多,可存放文件夹中,添加 \graphicspath{{Figures/}{logo/}}Figures 为与源代码相同路径的用于存放图片的文件夹,{logo/} 可省略,但 {/Figures} 仍要有大括号。;
  • \caption 用于插入图注,其应用在 \includegraphics 的下方即将图注插在图片下方,反之亦然。
  • /label{} 用于加标签,通过 /ref{} 于正文中引用。

输出结果

在这里插入图片描述

2. 一行多列

利用 \begin{minipage}{0.32\linewidth} 来进行分列。

\documentclass{article}
\usepackage{graphicx}  % 插入图片所需引入的宏包
\graphicspath{{Figures/}{logo/}}  % 图片文件夹
\begin{document}  
\begin{figure}[htbp]  % 调整图片排版位置选项\centering\begin{minipage}{0.32\linewidth}  % 分列\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}  % 插入图片\centerline{image1}   % 插入图注\end{minipage}\begin{minipage}{0.32\linewidth}\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}\centerline{image2}\end{minipage}\begin{minipage}{0.32\linewidth}\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}\centerline{image3}\end{minipage}\caption{Visual comparisons of original models.  }\label{fig4}
\end{figure}
\end{document} 

参数解释

  • \begin{minipage}{0.32\linewidth} 用于分列。{0.32\linewidth} 表示控制列的宽度,如果是两列,则是1除以2,然后减去0.1,切记多列的宽度加起来不要等于1,否则可能因为空间不足,latex会自动换行;

输出结果

在这里插入图片描述

3. 一列多行

\begin{minipage} 中放多个 \centerline{\includegraphics[width=\textwidth]{ablation/2.png}} 可以实现多行。

\documentclass{article}
\usepackage{graphicx}  % 插入图片所需引入的宏包
\usepackage{float}  %设置图片浮动位置的宏包
\graphicspath{{Figures/}{logo/}}  % 图片文件夹
\begin{document}  
\begin{figure}[H]  % 调整图片排版位置选项\centering  %图片全局居中\vspace{3pt} %设置整体与上面正文的距离\begin{minipage}{0.7\linewidth}\centerline{\includegraphics[width=\textwidth]{2.png}}\centerline{image1}%\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}\centerline{image2}%\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}\centerline{image3}\end{minipage}\caption{Visual comparisons of original models.  }\label{fig4}
\end{figure} 
\end{document} 

在这里插入图片描述

4. 两列多行

\documentclass{article}
\usepackage{graphicx}  % 插入图片所需引入的宏包
\usepackage{float}  %设置图片浮动位置的宏包
\graphicspath{{Figures/}{logo/}}  % 图片文件夹
\begin{document}  
\begin{figure}[H]  % 调整图片排版位置选项\centering  %图片全局居中\vspace{3pt} %设置整体与上面正文的距离\begin{minipage}{0.48\linewidth}\centerline{\includegraphics[width=\textwidth]{2.png}}\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}\centerline{image1}\end{minipage}\begin{minipage}{0.48\linewidth}\centerline{\includegraphics[width=\textwidth]{2.png}}\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}\centerline{image2}\end{minipage}\caption{Visual comparisons of original models (SCRN)  }\label{fig4}
\end{figure}
\end{document}   

输出结果

在这里插入图片描述

5. 多列多行

\documentclass{article}
\usepackage{graphicx}  % 插入图片所需引入的宏包
\usepackage{float}  %设置图片浮动位置的宏包
\graphicspath{{Figures/}{logo/}}  % 图片文件夹
\begin{document}  
\begin{figure}[H]  % 调整图片排版位置选项\begin{minipage}{0.32\linewidth}\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}\vspace{3pt}\centerline{Image}\end{minipage}\begin{minipage}{0.32\linewidth}\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}\vspace{3pt}\centerline{Image}\end{minipage}\begin{minipage}{0.32\linewidth}\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}\vspace{3pt}\centerline{\includegraphics[width=\textwidth]{2.png}}\vspace{3pt}\centerline{Image}\end{minipage}
\end{figure}
\end{document} 

输出结果

在这里插入图片描述

四、Subfigure

subfigure官方文档:The subfigure Package
LATEX使用subfigure命令插入多行多列图片并且为子图模式 修改子图与子图、子标题的距离

\documentclass{article}
\usepackage{graphicx}  %插入图片的宏包
\usepackage{float}  %设置图片浮动位置的宏包
\usepackage{subfigure}  %插入多图时用子图显示的宏包
\graphicspath{{Figures/}{logo/}}  % 图片文件夹
\begin{document}  
\begin{figure}[H] %设置图片浮动\centering  %图片全局居中\vspace{-0.35cm} %设置整体与上面正文的距离\subfigtopskip=2pt %设置子图与上面正文的距离\subfigbottomskip=2pt %设置第二行子图与第一行子图的距离,即下面的头与上面的脚的距离\subfigcapskip=-5pt %设置子图与子标题之间的距离\subfigure[image1]{\label{1}\includegraphics[width=0.32\linewidth]{2.png}}\quad %默认情况下两个子图之间空的较少,使用这个命令加大宽度\subfigure[image2]{\label{2}\includegraphics[width=0.32\linewidth]{2.png}}%这里空一行,能够实现强制将四张图分成两行两列显示,而不是放不下图了再换行\subfigure[image3]{\label{3}\includegraphics[width=0.32\linewidth]{2.png}}\quad\subfigure[image4]{\label{4}\includegraphics[width=0.32\linewidth]{2.png}}\caption{Visual comparisons of original models.  }\label{level}
\end{figure}
\end{document} 

输出结果

在这里插入图片描述

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/web/22629.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【Vue】computed 计算属性 VS methods 方法

文章目录 一、computed 计算属性二、methods 方法 一、computed 计算属性 作用:封装了一段对于数据的处理,求得一个结果,而且还可以拿这个结果去缓存。 语法: ① 写在 computed 配置项中 ② 作为属性,直接使用 → …

拓展商机的金钥匙:成为SSL证书合作商的长期回报

在当今数字化浪潮中,网络安全已经成为企业生存和发展不可或缺的一部分。随着在线交易和数据交换的增多,SSL证书作为保障网站安全和增强用户信任的关键工具,其重要性日益凸显。成为SSL证书的合作商后,不仅能够立即开启新的收入来源…

解决微信小程序分享按钮不可用

问题描述 在微信小程序中点击胶囊按钮上的三个点,在弹出的对话框中的【分享给好友】【分享到朋友圈】按钮都属于不可用的状态,显示未设置。 问题截图 解决方案 在每个需要此功能的页面都需要添加此代码,否则就不能进行使用。 // vue3时&l…

证件照太大了怎么压缩到100k?6个软件教你快速进行压缩

证件照太大了怎么压缩到100k?6个软件教你快速进行压缩 压缩证件照大小通常需要使用专门的图片压缩工具或者图片编辑软件。以下是六款常用的软件,它们可以帮助你快速压缩证件照大小到100KB以内: 1.迅捷压缩:这是一款图片压缩工具…

应用程序加固的优势及其在移动应用安全中的重要性

哈喽,大家好呀,淼淼又来和大家见面啦,现如今移动应用已成为人们生活和工作的重要组成部分。然而,随着移动应用的普及,安全威胁也在不断增加,用户的个人信息和机密数据面临着被窃取和篡改的风险。为了应对这…

Linux c fread/fseek 函数

函数:fread size_t fread(void *ptr, size_t size, size_t nmemb, FILE *stream); 参数说明: 参数 buffer 指向要读取的数组中首个对象的指针 size 每个对象的大小(单位是字节) count 要读取的对象个数 stream 输入流 …

【WP|8】深入解析WordPress钩子函数

钩子函数(Hook)是WordPress插件和主题开发中最重要的概念之一。钩子函数允许开发者在特定的时刻或事件发生时插入自定义代码,以改变WordPress的默认行为或者添加新功能。钩子分为两种主要类型:动作(Actions&#xff09…

【Kubernetes】k8s的调度约束(亲和与反亲和)

一、调度约束 list-watch 组件 Kubernetes 是通过 List-Watch 的机制进行每个组件的协作,保持数据同步的,每个组件之间的设计实现了解耦。 用户是通过 kubectl 根据配置文件,向 APIServer 发送命令,在 Node 节点上面建立 Pod 和…

Java使用正则表达式匹配以某个字符开始,某个字符结束

前言 好久没用regex了,之前用的贼溜的东西都忘完了,这次遇到一个东西恰好我觉得用正则表达式会方便一点,所以把这次的开发过程记录一下 这遍文章包括Java如何使用正则表达式去匹配解决正确的表达式却匹配不到数据的问题使用正则表达式却出现栈溢出的问题背景需求 首先我会根…

django连接达梦数据库

为了在Django中连接达梦数据库,你需要确保你有达梦的数据库驱动。Django默认支持的数据库有PostgreSQL, MySQL, SQLite, Oracle等,但不包括达梦数据库。不过,对于大多数数据库,Django的数据库API是通用的,你可以通过第…

每天的CTF小练--6.5(ascll码高级运用)

题目:[HUBUCTF 2022 新生赛]baby_encrypt hint: 781612443113954655886887407898899451044114412011257135914071455155316031651170318041861191719652013207021272183228423832485254125932643269827992924 注意查看前面的数字,这题不想现…

浮点数与0比较

浮点数与0比较-CSDN博客 本来摘录自上面的文章,用以学习!感谢! #include <QString> #include <QDebug> #include <stdio.h> int main() {double x3.6;printf("%.50f\n",x);system("pause");return 0; }3.6000000000000000888178419700…

多线程最佳实践

异步线程阻塞等待完成 当你遇到一个场景&#xff0c;需要同时启动多个任务&#xff0c;并等待所有任务完成后执行后续操作。这个方法很有用&#xff0c;比如你需要执行三个下载任务&#xff0c;当三个任务都下载完成后你才通知界面说完成&#xff0c;这个时候如果一个个去下载…

Mybatis01-初识Mybatis

简介 1、 什么是Mybatis MyBatis 是一款优秀的持久层框架; 它支持自定义 SQL、存储过程以及高级映射 MyBatis 免除了几乎所有的 JDBC 代码以及设置参数和获取结果集的工作。 MyBatis 可以通过简单的 XML 或注解来配置和映射原始类型、接口和 Java POJO&#xff08;Plain Ol…

try…except语句

自学python如何成为大佬(目录):https://blog.csdn.net/weixin_67859959/article/details/139049996?spm1001.2014.3001.5501 在程序开发时&#xff0c;有些错误并不是每次运行都会出现。例如&#xff0c;实例01&#xff0c;只要输入的数据符合程序的要求&#xff0c;程序就可…

推荐一个免费的相亲工具

推荐一个免费的相亲工具&#xff0c;步骤如下&#xff1a; 1&#xff09;微信里面搜索公众号“光源桥”&#xff0c;并关注 2&#xff09;输入搜索条件进行搜索对象 例如下面搜索&#xff1a;

【通信协议-RTCM】RTCM通信协议常用英文缩写词汇对照表

RTCM通信协议常用英文缩写词汇对照表 ARP ---- Antenna Reference Point 天线参考点BDS ---- BeiDou Navigation Satellite System 北斗卫星导航系统CRS ---- Coordinate Reference System 坐标参考系ECEF ---- Earth Centered Earth Fixed 地心地固坐标系GLONASS ---- Global…

CDH服务红,查看日志发现host有问题

看host后&#xff0c;发现里面节点ip都是127.0.0.1然后全部改成对应的ip&#xff0c; 1.在/etc/hosts里面全部加上了 ip以及对应的角色名称 2然后注释了127.0.0.1 hostname 3.然后重启所有的机器agent和server&#xff0c;在重新登录&#xff0c;点击重新部署。 重启agent sy…

电子凭证3.0,助力企业实现报销自动化

在数字化浪潮汹涌澎湃的今天&#xff0c;企业对于高效、便捷、安全的财务管理需求日益凸显。传统的报销流程繁琐、耗时&#xff0c;不仅增加了企业的运营成本&#xff0c;还影响了员工的工作效率和满意度。用友BIP电子凭证3.0的发布&#xff0c;无疑为企业实现报销自动化提供了…

链桨PaddleDTX-基于区块链的联邦学习

目录 链桨PaddleDTX-基于区块链的联邦学习 一、项目简介 1.1 多方安全计算网络