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.
| Topic | Screen | |
| What is TeX | screen | |
| TeX Structure | screen | |
| Basics, Simple Document | screen | |
| Lists | screen | |
| Boxes | screen | |
| Table | screen | |
| Long Table | screen | |
| Colour Table | screen | |
| Figures | screen | |
| Bibliography | screen | |
| Math | screen | |
| Cross References | screen | |
| Page Layout | screen | |
| Footnotes, End Notes | screen | |
| BibTeX | screen | |
| Table of Contents, Index | screen | |
| Theorems | screen |