On Tue, 16 Nov 1999, Paul Lussier wrote:
> Jose Abilio Oliveira Matos said:
>
> > Hi, I'm very far from any decent X display, but if I remember correctly
> >that is File->Export as->Linuxdoc
>
> Nope. Not unless there's something wrong with my Lyx installation (on 2
> completely different systems).
You must set Layout->Document->Class: SGML (LinuxDoc article/manpage).
Then you will have a File->Export->as LinuxDoc option.
Of course you need sgmltools 1.0.x and the linuxdoc-sgml.sty must be in
a place known by latex. The easier way to do is to include in
your .profile or /etc/profile something like
if [ -d "/usr/local/lib/sgml-tools" ]; then
if [ -z "$TEXINPUTS" ]; then
TEXINPUTS=".:"
fi
case "$TEXINPUTS" in
*/usr/local/lib/sgml-tools*) : ;;
*) TEXINPUTS="$TEXINPUTS/usr/local/lib/sgml-tools:" ;;
esac
fi
export TEXINPUTS
Casantos