TeX
Each figure is drawn on a separate sheet --- one A4-size paper
contains one figure. The figure number, caption, and the author's name
are shown in a margin on each sheet.
From the four EPS files above, we make a A4-size Postscript file
which contains figure pages. This can be done with the LaTeX2e
graphics (graphicx) package. Let's make a TeX file "figure.tex", and
import EPS files in it. The next shows the top part of this file.
\documentclass[12pt]{article}
\oddsidemargin 0mm
\evensidemargin 0mm
\topmargin 0mm
\headheight 0mm
\headsep 0mm
\topskip 0mm
\textwidth 160mm % 210 - 25x2 mm
\textheight 235mm % 297 - 30x2 -2 mm
\baselineskip 12pt % single space
\usepackage[dvips]{graphics}
\begin{document}
\pagestyle{empty}
|
The EPS files are imported by the \includegraphics
command, and adjust (enlarge) the figure width by \resizebox
. At the top of each page, the figure number, author's name and
affiliation are written. In the next example those infomation is
top/right aligned.
\begin{flushright}
Fig.~1~:~ Kawano, T. (Kyushu U.)
\end{flushright}
\vskip 1cm
\begin{center}
\resizebox{150mm}{!}{\includegraphics{besj0.eps}}
\end{center}
\clearpage
|
If you want to include the figure caption, use figure
environment. In this case you can use a figure label, so the second
line (figure number) can be generated automatically.
\begin{flushright}
Fig.~\ref{besj0}~:~ Kawano, T. (Kyushu U.)
\end{flushright}
\vskip 1cm
\begin{figure}[b!]
\begin{center}
\resizebox{150mm}{!}{\includegraphics{besj0.eps}}
\caption{Bessel function, $J_0$.}
\label{besj0}
\end{center}
\end{figure}
\clearpage
|
To include several plots in one figure, align those plots by the
tabular environment. To combine the four EPS in one
figure:
\begin{flushright}
Fig.~5~:~ Kawano, T. (Kyushu U.)
\end{flushright}
\vskip 1cm
\begin{center}
\begin{tabular}{cc}
\resizebox{70mm}{!}{\includegraphics{besj0.eps}} &
\resizebox{70mm}{!}{\includegraphics{besj1.eps}} \\
\resizebox{70mm}{!}{\includegraphics{besy0.eps}} &
\resizebox{70mm}{!}{\includegraphics{besy1.eps}} \\
\end{tabular}
\end{center}
\clearpage
|
Cares must be made for the size of letters, because the letter
size becomes very small in this case.
|