latex学习笔记3 图片的放置技巧

时间:2023-01-04 06:08:03

首先要加载图标所需要的一些宏包

%------------图表设置---------------------

\usepackage{graphicx}%用于插图片

\usepackage{float}%用于使图片浮动

\usepackage{caption}%用于图片标题的修改

\captionsetup{figurename=图}%默认为figure,改变后为图

%------------------------------------

%正常情况下直接在figure环境中插入图片即可,入股需要要并排图片或表,可以使用minipage(或\parbox命令)环境 \begin{minipage}[位置]{大小}后面两个选项不可缺少

%caption还有许多设置可以通过\captionsetup{}进行

\begin{figure}[t]

\centering

\begin{minipage}[t]{0.4\textwidth}  %或者\linewidth

\includegraphics[width=5cm]{ACshield}

\caption{The shield of American Capital}

\end{minipage}

\qquad

\begin{minipage}[t]{0.4\textwidth}

\includegraphics[width=6cm]{leishen.png}

\caption{The shield of American Capital}

\end{minipage}

\vfill

\vspace{1em}

\begin{minipage}[t]{0.4\textwidth}

\includegraphics[width=6cm]{leishen.png}

\captionsetup{justification=centering}

\caption{The shield of Ameri-can Capital}

\end{minipage}

\qquad

\parbox[b]{0.4\textwidth}{盾的创造与历史

最初,Myron Maclain博士试图发明一种不可摧毁的合金,就如同传奇的“埃德曼合金”一样,即海格力斯(大力神)的黄金杵的原料(也就是金刚狼体内的合金)。Maclain博士希望这种合金能带给美国的战争机器们独特的优点,在第一次世界大战中,博士有一天工作的非常累,当时他正研究异乎寻常的振金(Vibranium)和一种不知名的物质。当博士睡着后,一种不知名的原素使得这两种物质神奇的粘合起来。}



\end{figure}

另外也不知道出于什么原理,使用\centerline{图片}能够让图片排列的更好看一点