compilation of tex documents
WARNING: Please update your bookmarks! The content of this site has been moved to http://dille.name where it will be updated as needed. This page will remain unchanged.
the following commands provide a sane way from the tex source document to a pdf document:
while (changed .aux .out .toc .lot .lof .ind .bbl .gls)pdflatex <file>if (changed .idx)[indexing]makeindex <file>if (.log contains "No file <file>.bbl.")[bibliography]bibtex <file>if (changed .glo)[glossary]makeindex -o <file>.gls -t <file>.glg -s nomencl.ist <file>.glo
NOTE: by using the latex command, you can create a dvi file instead of a pdf document.
it is also possible to have a personal repository of styles in your home directory. in this case you might want to adjust the TEXINPUTS environment variable to tell tex where to search:
TEXINPUTS="${TEXINPUTS}:~/.tex" pdflatex <file>
be aware that the order of the elements of TEXINPUTS either makes your repository the default (if it is listed at the front) or the fallback (if it is listed at the rear).



