I'm working on a document. There's an index there, but for some reason when I change things in it it doesn't update the rendered outcome and I can't correct it.
I tried erasing the .ind file, but then it just render the document without an index at all (instead of re-creating the index as I would have expected).
What am I doing wrong?
Specifics:
there's a defs file that has:
\usepackage{makeidx}
\makeindex
the grand .tex file has:
\input{defs}
.
.
.
\printindex
But: when I change, for example \index{Installing} to \index{installing}
the index keeps having "Installing" and not "installing".
When I erase the .ind file and re-render it (even after ten times of trying) the document simply does not include an index at all and stops before it.
There is no new .ind file being generated.
.indyou need to run LaTeX multiple times for the index to be generated. After doing that does the problem persist? – Peter Jansson Feb 14 at 13:17