% source.tex
\documentclass{article} \usepackage{makeidx} \makeindex \title{A Title} \author{An Author} \date{July 19, 2004} \begin{document} \maketitle \section{First Section} Some text\footnote{Footnote (a)}. \section{Second Section} \subsection{A Subsection} \index{this}This is also text \cite{bib-1}\footnote{Footnote (b)}. \subsection{Another Subsection} Put \index{this}this and \index{that}that and \index{one}one, \index{two}two, \index{three}three. \begin{thebibliography}{99} \bibitem{bib-1} A bib entry. \bibitem{bib-2} Another bib entry. \end{thebibliography} \printindex \end{document} |