\documentclass{article}
\usepackage{makeidx} \makeindex \title{An Example} \author{Some One} \date{21 July 2003} \begin{document} \maketitle \section{A Title} Some content\index{content}. \section{Another Title} Another content\index{content}. \subsection{More} Text\index{Text}. \subsection{Some Math} \[x = \left\{ \begin{array}{ll} {-b \pm \sqrt{b^2-4ac} \over 2a} & \mbox{if $b^2 \geq 4ac$} \\ \mbox{undefined} & \mbox{otherwise} \end{array} \right. \] \printindex \end{document}
|