LaTeX 插入图片
PDF, PNG, JPG
Preamble:
\usepackage{graphicx}
Body:
\begin{figure}[htbp] % h: here, t: top, b: bottom, p: page
\centering % 居中
\includegraphics[width=0.85\columnwidth]{figures/figure.pdf} % 插入图片
\caption{图片说明}
\label{fig:1} % 引用标签
\end{figure}
\ref{fig:1} % 引用图片
参考:Inserting Images | Overleaf
SVG
⚠️ 注意:SVG 的支持尚不完全,嵌入的 SVG 图片可能出现显示错误。
Preamble:
\usepackage{svg}
Body:
\begin{figure}[htbp] % h: here, t: top, b: bottom, p: page
\centering % 居中
\includesvg[width=0.5\textwidth]{figure.svg} % 插入图片
\caption{图片说明}
\label{fig:1} % 引用标签
\end{figure}

浙公网安备 33010602011771号