LaTeX Tips
- To get better rendering, use the postscript fonts rather than
the bitmapped fonts:
\usepackage{times}
- To use times (rather than computer modern roman) for math fonts, try:
\usepackage{mathtime}
\usepackage{times,mathptm}
- To include PostScript graphics for latex:
\usepackage{epsfig}
usage: \epsfig{file=picture.eps,width=...,height=...}
- To include PostScript graphics for pdflatex:
\usepackage{graphicx}
\includegraphics[width=4.0truein]{graphic}
where graphic.exp is the file you wish to display
- To include other kinds of graphics (.gif, .jpeg, .png),
first convert to PostScript via "xv" program.
- To include simple plots and graphics (e.g. for tests) create
using "xfig" and save as an .eps file.
- Ask around for good "macros". If you use something more than
twice, make it macro...