欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

2 Latex插入图片

程序员文章站 2022-05-21 18:59:30
...
% 添加包
\usepackage{graphicx}

% 需要添加图片的地方
\begin{figure}[htp]
\centering % 图片居中
\includegraphics[width = 8.3cm]{figures/figure_1.png}
\caption{The caption of this figure.}
\label{fig:figure1label}
\end{figure}

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

参考

1.点击进入Github