LaTeX Indexing in LaTeX: Setting up Sub-Entries

  • Thread starter Thread starter Pauly Man
  • Start date Start date
  • Tags Tags
    Latex
AI Thread Summary
The discussion focuses on setting up sub-entries in LaTeX indexing, where the user seeks guidance on how to create sub-entries under main index terms, such as "Function" with subcategories like "Linear" and "Trigonometric." The user is currently using a method that combines entries into one line, but is looking for a more structured approach. Additionally, there is a query about formatting the index to display entries under corresponding letters, and a technical issue regarding referencing equations in the appendix when using the book document class. The user has a specific command for referencing in articles but needs assistance modifying it for the book format to achieve the desired output. The conversation highlights the challenges of indexing and referencing in LaTeX while seeking solutions for better organization.
Pauly Man
Messages
129
Reaction score
0
Hi Guys,

I am currently writing two rather large articles with latex. I've added an index to each file, and am currently looking through each article and adding relevant references to bits and pieces so they'll show up in the index. That bit is easy, you just use the \index{The Text You Want to Appear in the Index} after the word you want to index. However many index entries have sub-entries, such as:

Function,
Linear
Non-Linear
Trigonometric
etc

How do you go about setting that up in latex? At the moment I have resorted to indexing like topics like so:

\index{Function, Linear}
\index{Function, Trigonometric}

Any help would be appreciated, as I'm still learning.
 
Physics news on Phys.org
Thanx for that, helped heaps. However I have still found no detailed info anywhere on the net. Once I get some cash I'll grab a copy of the "Latex COmpanion", but until then, I'm stumped on a few other things.

For instance, how do you get the index to print the letter, eg:

A
Alphabet
Animation

B
Butter
Butterfly

etc...

Also this is bugging me majorly. I can correctly refernce equations when using the article document class, but I can't using the book document class. Well, more specifically I can't reference the equations I have in the appendix. I have one appendix, which is a chapter. And at present one section in the appendix. So that subsection is numbered A.1[\B]. I have a few equations in that section, labelled A.1.n[\B], where n is a given number. Now I have set up a newcommand in the preample that I use to correctly reference equations in an article (where I have sections and sub-sections, instead of chapters and sections):

\newcommand{\eqreference}[1]{(\thesubsection.\ref{#1})}

where #1 is the key of the equation.

The above command would output A.n.m[\B] for an equation in the appendix of an article. The code below is what I am using in a book:

\newcommand{\eqreference}[1]{(\thesection.\ref{#1})}

Which outputs A.1.A.n[\B], which isn't what I want at all! How do I change the above code so that it outputs A.n.m[\B]?
 

Similar threads

Back
Top