Here is random latex info
HyperRef Package
If you want to have the TOC embedded in the pdf generated as well as links from citations to the bib, add the following in the preamble of your document:
\usepackage{hyperref}
Subfig Package
You can put a bunch of images together as subfigures in one figure environment by adding
\usepackage{subfig}
To the preamble and then putting the different images, figures, etc in subfloat's. Here's a simple example. The \qquads are just for spacing.
\begin{figure}
\centering
\subfloat[Binary Graph]{\includegraphics[scale=.8]{Figures/binarygraph}}
\qquad\qquad
\subfloat[Weighted Graph]{\includegraphics[scale=.8]{Figures/weightedgraph}}
\qquad\qquad
\subfloat[Multiedge Graph]{\includegraphics[scale=.8]{Figures/multigraph}}
\caption{Graph {\em a} represents a binary graph that the standard community
structure algorithm will accept. Graph {\em b} is the actual weighted
network and {\em c} is the weighted network converted to a multigraph for use
in our adapted algorithm.}
\end{figure}
The documentation for this is at http://www.ctan.org/get/macros/latex/contrib/subfig/subfig.pdf
LaTeX for Logicians
For PL theory bits, there are some tips at LaTeX for Logicians.
