要用到 graphicx 包:在導言區加上一行 \usepackage{graphicx}.
還要有製作 EPS 圖片的軟體。假設圖片檔案是 figurefile.eps
在正文中需要圖片的地方,只要像這樣即可:
一張圖片:
\begin{figure}[!hbt]
\centering
\includegraphics[width = 30 mm, height = 30 mm]{figurefile.eps}
\caption{圖示說明}
\label{fig:id} % 用於交叉引用
\end{figure}
如果是多個圖片,可以在 figure 環境中使用 tabular 環境。例如 6 張圖片分三行:
\begin{tabular}{cc}
\includegraphics[width = 30 mm, height = 20 mm]{figure11.eps} &
\includegraphics[width = 30 mm, height = 20 mm]{figure12.eps}
\\
(a) 圖片 11 的簡介 & (b) 圖片 12 的簡介
\includegraphics[width = 30 mm, height = 20 mm]{figure21.eps} &
\includegraphics[width = 30 mm, height = 20 mm]{figure22.eps}
(c) 圖片 21 的簡介 & (d) 圖片 22 的簡介
\includegraphics[width = 30 mm, height = 20 mm]{figure31.eps} &
\includegraphics[width = 30 mm, height = 20 mm]{figure32.eps}
(e) 圖片 31 的簡介 & (f) 圖片 32 的簡介
\end{tabular}
要用到 graphicx 包:在導言區加上一行 \usepackage{graphicx}.
還要有製作 EPS 圖片的軟體。假設圖片檔案是 figurefile.eps
在正文中需要圖片的地方,只要像這樣即可:
一張圖片:
\begin{figure}[!hbt]
\centering
\includegraphics[width = 30 mm, height = 30 mm]{figurefile.eps}
\caption{圖示說明}
\label{fig:id} % 用於交叉引用
\end{figure}
如果是多個圖片,可以在 figure 環境中使用 tabular 環境。例如 6 張圖片分三行:
\begin{figure}[!hbt]
\centering
\begin{tabular}{cc}
\includegraphics[width = 30 mm, height = 20 mm]{figure11.eps} &
\includegraphics[width = 30 mm, height = 20 mm]{figure12.eps}
\\
(a) 圖片 11 的簡介 & (b) 圖片 12 的簡介
\\
\includegraphics[width = 30 mm, height = 20 mm]{figure21.eps} &
\includegraphics[width = 30 mm, height = 20 mm]{figure22.eps}
\\
(c) 圖片 21 的簡介 & (d) 圖片 22 的簡介
\\
\includegraphics[width = 30 mm, height = 20 mm]{figure31.eps} &
\includegraphics[width = 30 mm, height = 20 mm]{figure32.eps}
\\
(e) 圖片 31 的簡介 & (f) 圖片 32 的簡介
\end{tabular}
\caption{圖示說明}
\label{fig:id} % 用於交叉引用
\end{figure}