I'm writing a report and I want to make a list of index as given in the below picture.
How I achieve this?
Thanks so much!
I'm writing a report and I want to make a list of index as given in the below picture.
How I achieve this?
Thanks so much!
Usually it will suffice to use the package makeidx or the more modern imakeidx. Then put \makeindex into your preamble. And in your document you can use \printindex to show it.
After compiling your document with f.i. pdflatex make sure to also compile with makeindex and then with pdflatex again.
If you want those groups of letters have a look at this post. It explains how to do it.
Just a basic example:
\documentclass{report}
\usepackage{makeidx}
\makeindex
\begin{document}
This is a test\index{test}
\clearpage\printindex
\end{document}
xindyinstead ofmekeindexcan do more flexible your index due a its powerful capabilities. – skpblack Jul 09 '17 at 13:54xindycomes with the last version of Miktex for Windows, only is necessary to download and install aperlinterpreter such as ActiveState Perl or Strawberry Perl. I have always been a Windows user. – skpblack Jul 09 '17 at 15:06