LaTeX中的数字

时间:2010-05-23 16:34:33

标签: latex

如何导入图形以使其显示在带有标题的页面底部?当我导入它并正常添加标题时,它总是显示在页面的顶部。

3 个答案:

答案 0 :(得分:3)

\begin{figure}[b]
 your figure
\end{figure}

有关更多语法,请参阅此链接:

http://en.wikibooks.org/wiki/LaTeX/Floats,_Figures_and_Captions#Figures

答案 1 :(得分:1)

只是一个例子:

下面的标题

\begin{figure}[h]
  \centering
  \includegraphics[width=0.3\textwidth]{thatcat.jpg}
  \caption{That cat!} % caption line
\end{figure}

caption below

上面的标题

\begin{figure}[h]
  \centering
  \caption{That cat!} % caption line
  \includegraphics[width=0.3\textwidth]{thatcat.jpg}
\end{figure}

caption above

答案 2 :(得分:0)

添加到弗雷尔:

如果您将\caption置于\includegraphics之上,则标题将高于该数字,如果您将\caption置于\includegraphics之下,则图标下方会显示标题。