I have many unnumbered sections in my report (more than 100), all created with:
\section*{section name}
I want to find an way to easily add all them to the TOC (specifically to a minitoc), since I use the * to remove the numbering they won't appear in TOC. I found out in minitoc documentation that I should use:
\addcontentsline{toc}{section}{repeat here section title}
However, I don't want to have a duplicated title in every section, or even to change all the involved files to add those already written sections to the TOC. How to add those section's names to the minitoc without using the addcontentsline command? Is it possible?
Thanks in advance!