Some details on what I'm trying to do: I am trying to use makeindex (v2.5) to create an index, and for the most part it works fine. I do have a couple glitches, however, with index entries like the ff.:
Code: Select all
\index{Demonstratives|see{Pronouns, demonstrative}}
\index{Demonstratives|seealso{Determiners}}
Code: Select all
\indexentry {Demonstratives|see{Pronouns, demonstrative}}{98}
\indexentry {Demonstratives|seealso{Determiners}}{98}
But what I get instead is a warning:Demonstratives, see Pronouns, demonstrative; see also Determiners
and the output## Warning (input = pashtoGrammar.idx, line = 292; output = pashtoGrammar.ind, line = 469):
-- Conflicting entries: multiple encaps for the same page under same key.
That is, the 'seealso' command is ignored (except that it apparently outputs a comma), and only the 'see' command results in useful output. (Also, if that stray comma is indeed coming from the 'seealso', then why is it before the output of 'see' instead of after?)Demonstratives, , see Pronouns, demonstrative
A similar output results from the pair:
Code: Select all
\indexentry {Verbs!subjunctive}{199}
\indexentry {Verbs!subjunctive|seealso{Irrealis}}{199}
What do I need to do to get two index "entries" under one heading? Isn't this what 'seealso' is for?Verbs, subjunctive, 199; see also Irrealis
In summary: what (I think)I need is a good example of the use of 'seealso' together with a 'see' or a page number; the documentation for makeindex seems not to have that, just examples of 'see' or 'seealso' by themselves.