Latex之图片排版

时间:2024-10-26 09:17:56

文章目录

  • 一、图片基本设置
  • 二、位置的设置
  • 三、图片并列排版
  • 总结

一、图片基本设置

\begin{figure}
	\centering
	\includegraphics[width=5.6in,height=2in]{自然处置效率图}
	\caption{自然处置效率图}
	\label{fig:自然处置效率图}
\end{figure}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

代码解释:

  • \includegraphics[width=5.6in,height=2in]:表示长宽的设置
  • \caption{text}:图片下标的设置
  • \label{fig:text}:图片标签的设置,该项利用引用时的参考(\ref)

结果展示:
在这里插入图片描述#

二、位置的设置

三、图片并列排版


\begin{figure*}
	\begin{center}
		\begin{minipage}{0.45\textwidth}
			\includegraphics[width=2.5in,height=2.5in]{自然处置效率图}
			\caption{自然处置效率图}
			\label{fig:自然处置效率图}
		\end{minipage}
		\begin{minipage}{0.45\textwidth}
			\includegraphics[width=2.5in,height=2.5in]{联合处置效率图}
			\caption{联合处置效率图}
			\label{fig:联合处置效率图}
		\end{minipage}
	\end{center}
\end{figure*}
	
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

在这里插入图片描述

代码如下(示例):


  • 1

总结