2010-05-23 73 views
1

如何導入圖形以便它出現在帶有標題的頁面底部?當我將其導入並正常放置標題時,它總是出現在頁面的頂部。LaTeX中的數字

+0

另請參閱:http://stackoverflow.com/questions/518284/problem-with-float-and-pictures-in-latex – dmckee 2010-05-24 08:08:15

回答

0

要添加到freyrs:

如果,如果你把\caption\includegraphics上面的標題將是上圖中,如果你把\caption放在\includegraphics以下,標題會出現在圖的下方。

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

+0

如果我想在兩個數字之間有tet,我該怎麼辦? – 2013-05-28 01:07:18

+0

@FadyKamal「tet」是什麼意思? – Yamaneko 2013-05-28 02:53:30

+0

哦,我的意思是文本*對不起 – 2013-05-28 22:14:50