latex如何插入图片
2个回答
展开全部
方法一:插入单个图片,图片格式为png,具体代码如下。
代码解释:
第一行中的[h]:代表图片就在当前位置,有的时候latex排版的时候图片太大,而剩余的空间太小,latex就会自动将图片放在文档中的一个合适的地方;
第二行:\centering表示图片的位置居中;
第三行:表示插入图片的长宽,后面的3代表图片的名字,这个照片在文件夹中的名字是3.png;
第四行:表示图题。
方法二:
并排插入两张图片(每张图片有自己的图题),这种方法会使latex中图片的编号顺序向后增加,具体代码如下。
方法三:
并排插入多张图片,没有小图,具体代码如下。
扩展资料:
LaTeX构筑在 PlainTeX的基础之上,并加进了很多的功能以使得使用者可以更为方便利用TeX的强大功能。使用LaTeX基本上不需要使用者自己设计命令和宏等,因此,即使使用者并不是很了解TeX,也可以在短短的时间内生成高质量的文档。对于生成复杂的数学公式,LaTeX表现更为出色。
展开全部
要用到 graphicx 包:在导言区加上一行 \usepackage{graphicx}.
还要有制作 EPS 图片的软件。假设图片文件是 figurefile.eps
在正文中需要图片的地方,只要像这样即可:
一张图片:
\begin{figure}[!hbt]
\centering
\includegraphics[width = 30 mm, height = 30 mm]{figurefile.eps}
\caption{图示说明}
\label{fig:id} % 用于交叉引用
\end{figure}
如果是多个图片,可以在 figure 环境中使用 tabular 环境。例如 6 张图片分三行:
\begin{figure}[!hbt]
\centering
\begin{tabular}{cc}
\includegraphics[width = 30 mm, height = 20 mm]{figure11.eps} &
\includegraphics[width = 30 mm, height = 20 mm]{figure12.eps}
\\
(a) 图片 11 的简介 & (b) 图片 12 的简介
\\
\includegraphics[width = 30 mm, height = 20 mm]{figure21.eps} &
\includegraphics[width = 30 mm, height = 20 mm]{figure22.eps}
\\
(c) 图片 21 的简介 & (d) 图片 22 的简介
\\
\includegraphics[width = 30 mm, height = 20 mm]{figure31.eps} &
\includegraphics[width = 30 mm, height = 20 mm]{figure32.eps}
\\
(e) 图片 31 的简介 & (f) 图片 32 的简介
\end{tabular}
\caption{图示说明}
\label{fig:id} % 用于交叉引用
\end{figure}
还要有制作 EPS 图片的软件。假设图片文件是 figurefile.eps
在正文中需要图片的地方,只要像这样即可:
一张图片:
\begin{figure}[!hbt]
\centering
\includegraphics[width = 30 mm, height = 30 mm]{figurefile.eps}
\caption{图示说明}
\label{fig:id} % 用于交叉引用
\end{figure}
如果是多个图片,可以在 figure 环境中使用 tabular 环境。例如 6 张图片分三行:
\begin{figure}[!hbt]
\centering
\begin{tabular}{cc}
\includegraphics[width = 30 mm, height = 20 mm]{figure11.eps} &
\includegraphics[width = 30 mm, height = 20 mm]{figure12.eps}
\\
(a) 图片 11 的简介 & (b) 图片 12 的简介
\\
\includegraphics[width = 30 mm, height = 20 mm]{figure21.eps} &
\includegraphics[width = 30 mm, height = 20 mm]{figure22.eps}
\\
(c) 图片 21 的简介 & (d) 图片 22 的简介
\\
\includegraphics[width = 30 mm, height = 20 mm]{figure31.eps} &
\includegraphics[width = 30 mm, height = 20 mm]{figure32.eps}
\\
(e) 图片 31 的简介 & (f) 图片 32 的简介
\end{tabular}
\caption{图示说明}
\label{fig:id} % 用于交叉引用
\end{figure}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询