Some useful links for LaTex
LaTeX editor/environment for Windows This appears to be a very good environment but does have the downside that it may not be completely free (on the other hand, you can obtain it for a 30 day trial period and then ignore the pop-ups!)
LaTeX setup for Windows
LaTeX on Windows
Mathematical Writing Tips
Symbols Guide 1
Symbols Guide 2
Symbols Guide 3
LaTex documentation


Some basics (mainly on Linux systems)
A sample LaTex file: sample.tex and the associated jpg file (you need to download both for the example to work)
To compile a LaTex file on Linux:
pdflatex sample.tex
(this directly produces a pdf file called sample.pdf (you need 'pdflatex' to do this)
Other ('older') approaches:
  • latex sample.tex % this produces sample.dvi as output
  • dvips -o sample.ps sample.dvi % this produces sample.ps, a postscript file
  • dvips -o -Ppdf sample.ps sample.dvi % this produces sample.ps, a postscript file that can be converted into a pdf file
  • ps2pdf sample.ps % this converts the ps to a pdf file
    Of course, you can view the ps file using ggv or gv (ghostview) and the pdf file via xpdf or acroread.

    For PSU theses : PSU Thesis package

    Editing:
    It is very helpful to use a good editor for latex. My personal preference is emacs so here is some information for emacs (you can search online for information on LaTex with other editors):
    Installation of auctex (for latex-mode in emacs): auctex
    (you will typically install this as root in: /usr/share/emacs/site-lisp/)
    In your .emacs file you will need the line: (require 'tex-site)
    Here is an example of a .emacs file.

    References: using bibtex
    Bibtex is a wonderfully simple and remarkably convenient way to add references in latex: create a myrefs.bib file where you will paste all the references in bibtex format, then add the lines \bibliographystyle{apalike} and \bibliography{myrefs} before the \end{document} command in your main latex file. In your latex file, you would put in references by using \cite and \citep commands. Then, compile the files together. Details are given here: bibtex resource . Another handy guide . Plus, you can often simply obtain the references from search engines, readily formatted for your use (you don't have to do much beyond cutting and pasting the results from the search.) For instance:
    CIS search engine Go to CIS search , set output format to 'bibtex', and then use the results from your search by pasting it into your myreferences.bib file
    Scholar google change your preferences to 'import into bibtex' : that way, you can get bibtex ready references as well though you should typically check to make sure it's in the right format and has the right information; scholar.google is not always reliable.