LaTeX Help

  1. Example LaTeX project proposal shell (save this as .tex) and the resulting pdf. Use pdflatex filename.tex to compile your LaTeX file to pdf.
    View the pdf with xpdf & (from a Terminal), for example.

  2. Example LaTeX "Estimate of programs" project proposal shell (save this as .tex) and the resulting pdf. Use pdflatex filename.tex to compile your LaTeX file to pdf.
    View the pdf with xpdf & (from a Terminal), for example.

  3. Help with bibliographies

  4. Example LaTeX research paper for you to use as a model

  5. Two column example: 2 column with an image - produces this pdf,
    you just have to add the word "twocolumn" to the documentclass (top line):
    \documentclass[12pt,twocolumn]{article}
    
    Also, here's another image example: Latex with an image - produces this pdf

  6. Bibliography formats

  7. LaTeX tutorial links:

To generate a LaTeX document

  1. Compile and generate a pdf from the latex file: pdflatex myfile.tex
    (or latex myfile.tex to generate a .dvi file)

  2. xpdf will view the pdf file (also gv, gpdf, kpdf, evince can view pdf's)

  3. To view a .dvi file using xdvi filename.dvi

  4. dvi file to pdf: dvipdf myfile.dvi (our current image doesn't support dvipdf, use pdflatex)

  5. To convert the latex file to html:
    "latex2html filename.tex"
    This creates a directory "filename" with an index.html file

  6. To convert to ".ps" (postscript) format, use dvips myfile.dvi

  7. To see the postscript (".ps") file, use Ghostview: gv myfile.ps