今日の LaTeX

TeX で、eps ファイルを複数並べて取り込む場合の雛型。以下は、左上から時計周りに 4 つのファイルを整列させる例。\resizebox の第一引数で、図の横幅を調整し、縦横比は固定。

\begin{figure}[!h]
  \begin{center}
    \begin{tabular}{cc}
      \resizebox{65mm}{!}{\includegraphics{hoge1.eps}}  &
      \resizebox{65mm}{!}{\includegraphics{hoge2.eps}} \\
      \resizebox{65mm}{!}{\includegraphics{hoge3.eps}} &
      \resizebox{65mm}{!}{\includegraphics{hoge4.eps}} \\
    \end{tabular}
    \caption{ここに説明文}
    \label{piyo}
  \end{center}
\end{figure}%