I'm having some probblems with indexing and i hope you can help. I have a list of technical presentations (100s of them) seperated in numbered sections (the conference) and numbered subsections(the presentation name).
To help me navigate this i want to build an index of topics, but with the index refering to the section.subsection number not the page number.
so far i have this:
Code: Select all
\newcommand{\sec}[1]{\alpha{section}.\alpha{subsection}}
Code: Select all
\section{Conference}
\subsection{Topic}
\index{topic|sec}
Code: Select all
\alpha{section}.\alpha{subsection}}
can anyone suggest a solution to this? Maybe i could use \label and \ref commands to give dedicated section refrences??