Go to TogaWare.com Home Page. GNU/Linux Desktop Survival Guide
by Graham Williams
Duck Duck Go



CLICK HERE TO VISIT THE UPDATED SURVIVAL GUIDE

LATEX Indexing

LATEX Indexing

20201017 Index entries can be added to the LATEX source document with \index{}.

To obtain a see:

\index{apache2|see {apache}}           	 apache2, see apache

\index{nfs|(}                            nfs, 25-32
...
\index{nfs|)}

To have the index included in the resulting file be sure to include the following toward the end of the document:

\clearemptydoublepage
\lfoot{}\rfoot{}
\addcontentsline{toc}{chapter}{Index}
\printindex

When processing the file the sequence of commands will include makeindex amongst the pdflatex commands, to then view the resulting pdf file with evince:

$ pdflatex mydoc.tex
$ makeindex mydoc
$ pdflatex mydoc.tex
$ pdflatex mydoc.tex
$ evince mydoc.pdf


Support further development by purchasing the PDF version of the book.
Other online resources include the Data Science Desktop Survival Guide.
Books available on Amazon include Data Mining with Rattle and Essentials of Data Science.
Popular open source software includes rattle and wajig.
Hosted by Togaware, a pioneer of free and open source software since 1984.
Copyright © 1995-2020 Togaware Pty Ltd. Creative Commons ShareAlike V4.