覚書

いつも忘れちゃうから。
texで図を使う(うちのredhatや学類計算機の場合)。
\documentclass[a4j]{jreport}
\usepackage{graphicx}
....
\begin{figure}[hbtp]
\begin{center}
\includegraphics[width=15cm]{hoge.eps}
\caption{hogehoge} %<=図の下に付くタイトルみたいなやつ
\label{hoge} %<=図につけるラベル。後で図の番号を参照するのに必要。
\end{center}
\end{figure}
....
図\ref{hoge} %<=2回platex実行後に、自動的に図の番号が入る。
....