


Exporting 3-dimensional transparent patches to eps for use in LaTeX
for the current figure
USAGE: fjc_patch2eps(name)
name - name-string of the eps-file
This produces one file 'name.eps' with the real figure
and one file 'name_axis.eps' with the corresponding axis.
Warning: that the grid will be lost.
in LaTeX use something like:
\usepackage{graphicx}
...
\begin{figure}
\newlength{\picturehight}
\setlength{\picturehight}{8cm}
\includegraphics[height=\picturehight]{name.eps}
\vskip -1.003\picturehight
\includegraphics[height=\picturehight]{name_axes.eps}
\end{figure}