Latex 图片插入、引用

% 添加包
\usepackage{graphicx}

% 需要添加图片的地方
\begin{figure}[h]
\centering % 图片居中
\includegraphics[width = 10cm]{fig/fig1.png}
\caption{The caption of this figure.}
\label{fig:fig1label}
\end{figure}

% 在中文中需要引用图片的地方
……如图 \ref{fig:fig1label} 所示。


% 图片宽度可设置文本宽度比
\includegraphics[width = 0.8\textwidth]{fig/fig1.png}

你可能感兴趣的:(论文写作,LaTex)