One additional fix that could be added (really a minor one) is in the
dependency of latex'ing. Specifically when an hebrew document has a TOC it
will need (as any document with a TOC) two passes, however the hebrew TOC
is in a file with suffix .cot due to the fact the hebrew latex supports
both hebrew and english TOC's in a single document (not supported by LyX,
but it exists), the different filename caused LyX to not identify the TOC
file and so no second pass was done, obviously making the TOC unupdated
until the next run. The fix is a one liner, the patch follows at the end
of the mail.

The bug was not identified so far since it only shows up when the document
has a TOC and no reference that will force a second latexing.

Another problem is with the document layout dialog, when changing document
class it will go to the background instead of staying in the front. It
seems to be so for some time now, though it wasn't in older versions (I
dont remember exactly when, but I think anywhere from 1.1.3 and down was
ok, At least 1.04 works ok - though it runs on a completely different
machine).

The patch:

Index: src/LaTeX.C
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/LaTeX.C,v
retrieving revision 1.26
diff -u -r1.26 LaTeX.C
--- src/LaTeX.C 2000/06/08 23:16:14     1.26
+++ src/LaTeX.C 2000/07/02 14:56:52
@@ -69,6 +69,7 @@
        { LaTeX::LOG, ".log"},
        { LaTeX::LOT, ".lot"},
        { LaTeX::TOC, ".toc"},
+       { LaTeX::TOC, ".cot"}, // Hebrew TOC
        { LaTeX::LTX, ".ltx"},
        { LaTeX::TEX, ".tex"}
 };

-- 
  Baruch Even

http://techst02.technion.ac.il/~sbaruch/   (My Site)
http://rpghost.com/jindor/                 (My brothers AD&D site)

" Learn to laugh ... it's the path to true love! " 
   - The Angel in the movie Michael







Reply via email to