On Mon, Sep 04, 2000 at 12:08:22PM +0100, Angus Leeming wrote:
> (I have now re-subscribed to the list. No need to reply to me individually any more.)
>
> When launching a recent CVS version of lyx (no document), I get the following
> warning messages:
[..]
> These bind files are up to date.
> The code was compiled with Dekel's new export code enabled.
[..]
> What have I done wrong? Can anybody point me in the right direction?
> Angus
To make the new export work, you need to have to have to define converters
in lyxrc (of course, the reconfigure script need to be changed so that
the converter definitions will be placed in lyxrc.defaults).
I use
\converter tex dvi "latex" noflags
\converter tex pdf "pdflatex" noflags
\converter dvi ps "dvips $$FName -o $$OutName" noflags
\converter ps pdf "ps2pdf $$FName $$OutName" noflags
\converter tex html "tth -e2 -t -L$$BaseName < $$FName > $$OutName" origdir
\converter sgml tex "sgml2latex $$FName" noflags
\converter sgml html "sgml2html -s 0 $$FName" noflags
\viewer dvi "xdvi $$FName"
\viewer ps "gv $$FName"
\viewer pdf "acroread -geometry 900x675+200+0 $$FName"
\viewer html "netscape $$FName"