"Lars Gullik Bjønnes" wrote:
> 
> "Garst R. Reese" <[EMAIL PROTECTED]> writes:
> 
> | index.sty provides support for multiple indexes. I was able to implement
> | this with lots of ERT
> 
> I will try to implement the backend for this, but don't expect
> anything earlier than 1.1.6.
> 
> I will most likely do nothing for the frontend though.
> 
> | In the preamble i put:
> | \usepackage{index}
> | \newindex{T}{tdx}{tnd}{Title Index}
> | \newindex{L}{ldx}{lnd}{Index of First Lines}
> |
> | At the end of the file I put:
> | \printindex[T]
> | \printindex[L]
> 
> and you did not need a
> \makeindex anywhere?
> 
>         Lgb
Sorry, I forgot about the makeindex. Yes, I had to export the LyX file
as latex and run:
 makeindex -o name.tnd name.tdx
 makeindex -o name.lnd name.ldx
The things that would help the most would be have an index line option
and a way to put in the [x] at the beginning of the entries and the end
of printindex. That would get rid of ERT and save bundles of typing.
the ERT lines typically look like
\index[T]{Dumb Poem}
\index[L]{Roses are red} 

Also, the attached patch against 1.1.4fix3 makes unnumbered Parts
possible in the TOC.
This is the value suggested in The LaTeX Companion and I have been using
it for some time. The same line gets changed in 1.1.5 unless drastic
things, I just checked it out for testing.
Thanks,
Garst
--- lyx_gui.C~  Tue Jan 25 13:21:47 2000
+++ lyx_gui.C   Thu Apr 20 20:51:13 2000
@@ -434,7 +434,7 @@
        fl_addto_choice(fd_form_document->choice_spacing,
                        _(" Single | OneHalf | Double | Other "));
 
-       fl_set_counter_bounds(fd_form_document->slider_secnumdepth,-1, 5);
+       fl_set_counter_bounds(fd_form_document->slider_secnumdepth,-2, 5);
        fl_set_counter_bounds(fd_form_document->slider_tocdepth,-1, 5);
        fl_set_counter_step(fd_form_document->slider_secnumdepth, 1, 1);
        fl_set_counter_step(fd_form_document->slider_tocdepth, 1, 1);

Reply via email to