Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

3
  • 1
    Welcome to TeX.SE! As it stands, you may not get much attention as your code can't simply be copied and pasted into a file for testing since the included files are missing. You may find it simpler to just put a single \index{test} in your document and omit the \include instances. Alternatively, you can use the testidx package, which is designed for testing index styles: \documentclass{article}\usepackage{makeidx}\usepackage{testidx} \makeindex \begin{document} \testidx \printindex \end{document}. That makes it easier to test and propose a solution. Commented Dec 11, 2018 at 16:49
  • Are you using \index to simply create a table of contents? Is there any particular reason why you're not just using \tableofcontents? Commented Dec 11, 2018 at 21:44
  • I guess it's been a mixture of a translation problem and lack of experience with latex. I'm just reading this website and seems that \tableofcontents provides the desired behavior. I'll try it, and if you write it in the form of an answer I'll accept it ;) Thank you! Commented Dec 12, 2018 at 9:04