LaTeX Help
- Starter LaTeX files to try:
- LaTeX tutorial links:
To generate a LaTeX document
- "Compile" the latex file: "latex filename.tex"
If there are no errors, this will create a ".dvi" file: filename.dvi
- You can view this .dvi file using xdvi filename.dvi
- Convert your file to PDF format: pdflatex file.tex
or
- dvi file to pdf (dvi to pdf):
- "dvipdf filename.dvi" (our current image doesn't support dvipdf, use pdflatex)
- To convert the latex file to html:
"latex2html filename.tex"
This creates a directory "filename" with an index.html file
- Convert to "PS" (postscript) format, use "dvi to ps
":
"dvips filename.dvi"
- To see the postscript (".ps") file, run Ghostview:
"gv filename.ps"