Quick Reference Guide |
LaTeX |
As requested here are the helpful bits of random knowledge for doing LaTeX bits:
Figures from IRIS Explorer
Getting a good looking figure out of IRIS Explorer can seem an art. I'll assume you've got everything lined up looking exactly as you want in the Render window.
convert file.rgb file.eps
Figures and text along side each other
To make your text appear next to a figure without having to do freaky thing with negative space, admire and study the following example. A \parbox is your friend inside a table:
\begin{slide}
\begin{center}
{\Large \bf Line Contact - Multigrid}
\end{center}
\begin{tabular}{ll}
\parbox{6.0cm}{
\begin{itemize}
\item{Standard iterative methods good at\\removing high frequency
errors \\relative to grid}
\item{Bad at removing low frequency errors relative to grid}
\item{Use of multiple levels of grid \\refinement accelerate
convergence \\on fine grids}
\item{On fine meshes more of the errors are low frequency relative to grid}
\end{itemize}
}
&
\mbox{\parbox{5.5cm}{\vspace{0.5cm}
\centering
{\em Slow single grid convergence}\\
\includegraphics[width=5.5cm]{sglines.eps.gz}
}
}
\end{tabular}
\end{slide}
For this method you will need to setup sglines.eps.gz as follows:
head sglines.eps > sglines.eps.bb
To convert a regular LaTeX document (including maths) to be easily screen renderable for talks, etc, then:
Note that when printing PDF files on a non-PS4 printer (ie not tsolw) then some files may need to be run through Distiller with a lower compatibilty rating. 1.3 seems to work for my problem files.
Movie making for laptop display
For a small size movie, playable on a Windows laptop use
| Return to homepage | E-mail comments |