LaTeX

LaTeX Links

LaTeX Tips

Reduce List Spacing

http://www.fysik.dtu.dk/~schiotz/comp/latextips/

Showing Labels

Keeping track of equation labels and looking them up when proofreading is difficult. If you use either the \usepackage{showkeys} or \usepackage{showlabels}, they put every label in the margin so that it is easier to lookup.

Cancel

If you want to strike thorogh a value showing a cancellation to zero or some other value, use the \uspackage{cancel} and read through the .sty file to see the various types of canceling. For example \cancelto{0}{x} will put an arrow through 'x' and set it to 0.

Printing Bibliograpies

\documentclass{article}
%\usepackage {bibmods}
%\usepackage {bibnames}
%\usepackage {showtags}

\begin{document}
\nocite{*}
\bibliographystyle{plain}
\bibliography{controls}
\end{document}

If you just want a list of all references in a bib file use the code above. However if you want a list with the associated citation keys printed you need to the showtags package from CTAN. I am not sure what the bibmods and bibnames do, but as you can see they are not needed.

LaTeX Tutorial

The original is at the Indian TeX users group site.

Description Files
What is TeX print screen
TeX Structure print screen
Basics, Simple Document print screen
Lists print screen
Boxes print screen
Table print screen
Long Table print screen
Colour Table print screen
Figures print screen
Bibliography print screen
Math print screen
Cross References print screen
Page Layout print screen
Footnotes, End Notes print screen
BibTeX print screen
Table of Contents, Index print screen
Theorems print screen