LaTeX

LaTeX笔记--(4)--[嵌入图像]

2017-03-22  本文已影响0人  FengBli

有时,我们会需要在文档中插入图像。在LaTeX中,使用figure环境和graphicx包插入图片,图片将会被自动编号和标记。

\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin{figure}
  \includepraghics[width=\linewidth]{location_of_img_file}
  \caption{description_of_img}
  \label{refercence_label}
\end{figure}
Figure\ref{refercence_label} shows something.
\end{document}

注:

插入图片到特定位置


...
\begin{figure}[h!]
...

注:参数意义如下表

? meaning
h(here) same location
t(top) top of page
b(bottom) bottom of page
p(page) on a extra page
!(override) will force the specified location

常用h!参数即可。

上一篇下一篇

猜你喜欢

热点阅读