需要graphicx宏包;为了让图片出现在正确的位置,需要float宏包。
\usepackage{graphicx}
\usepackage{float}
插入单张图片用以下代码
\begin{figure}[H]
\centering
\includegraphics{pic.png}
\caption{Title of picture}
\end{figure}
\caption{}指令的作用,是在其对应的位置(位于\includegraphics{}前就是图片上方,后就是图片下方)产生“图x:Title of picture”的语句。其中x是图片的编号。
可以给\includegraphics{}加上option列表以调整图片的大小。比如说,我想插入的图片是原图片等比例缩小为原来的0.8,则可以写成
\includegraphics[scale=0.8]{pic.png}
如果想专门调整长宽,则可以把scale=0.8换成height=xxx, width=xxx
插入并排图片pic1.png和pic2.png
\begin{figure}[H]
\centering
\begin{minipage}{0.48\textwidth}
\centering
\includegr