Re: Does LyX complain about broken label or citation references?

2001-06-09 Thread Ramon Felciano

Yes, that's what I ended up doing. It was just a bit painful to track or
scan that log file by hand -- and I wasn't sure how to do it automatically
via some kind of Unix redirect -- so I thought I'd drop a line to see if LyX
supported it.

Is there an official way to add something to the wishlist?

Ramon

- Original Message -
From: Jean-Pierre.Chretien [EMAIL PROTECTED]
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Friday, June 08, 2001 10:25 AM
Subject: Re: Does LyX complain about broken label or citation references?



 
  Ramon == Ramon Felciano [EMAIL PROTECTED] writes:
 
 Ramon Hi -- I've noticed that LyX (or LaTeX I guess) doesn't seem to
 Ramon complain about broken label references. Instead, the reference
 Ramon gets printed with a ? indicating that the target couldn't be
 Ramon found. Is there any way to do a pre-flight of a LyX (LaTeX)
 Ramon document to check the references and make sure they are all
 Ramon present and accessible?
 
 LyX does not have this feature yet. It would certainly be useful...
 
 JMarc

 LaTeX does, look for undefined references in the log file.
 It should not be very hard to search for it and open a warning popup
 I guess as it does something of the kind to re-run LaTeX.


 --
 Jean-Pierre





Re: Does LyX complain about broken label or citation references?

2001-06-09 Thread Ramon Felciano

Yes, that's what I ended up doing. It was just a bit painful to track or
scan that log file by hand -- and I wasn't sure how to do it automatically
via some kind of Unix redirect -- so I thought I'd drop a line to see if LyX
supported it.

Is there an official way to add something to the wishlist?

Ramon

- Original Message -
From: Jean-Pierre.Chretien [EMAIL PROTECTED]
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Friday, June 08, 2001 10:25 AM
Subject: Re: Does LyX complain about broken label or citation references?



 
  Ramon == Ramon Felciano [EMAIL PROTECTED] writes:
 
 Ramon Hi -- I've noticed that LyX (or LaTeX I guess) doesn't seem to
 Ramon complain about broken label references. Instead, the reference
 Ramon gets printed with a ? indicating that the target couldn't be
 Ramon found. Is there any way to do a pre-flight of a LyX (LaTeX)
 Ramon document to check the references and make sure they are all
 Ramon present and accessible?
 
 LyX does not have this feature yet. It would certainly be useful...
 
 JMarc

 LaTeX does, look for undefined references in the log file.
 It should not be very hard to search for it and open a warning popup
 I guess as it does something of the kind to re-run LaTeX.


 --
 Jean-Pierre





Re: Does LyX complain about broken label or citation references?

2001-06-09 Thread Ramon Felciano

Yes, that's what I ended up doing. It was just a bit painful to track or
scan that log file by hand -- and I wasn't sure how to do it automatically
via some kind of Unix redirect -- so I thought I'd drop a line to see if LyX
supported it.

Is there an official way to add something to the wishlist?

Ramon

- Original Message -
From: "Jean-Pierre.Chretien" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Friday, June 08, 2001 10:25 AM
Subject: Re: Does LyX complain about broken label or citation references?


>
> >>
> >>>>>>> "Ramon" == Ramon Felciano <[EMAIL PROTECTED]> writes:
> >>
> >>Ramon> Hi -- I've noticed that LyX (or LaTeX I guess) doesn't seem to
> >>Ramon> complain about broken label references. Instead, the reference
> >>Ramon> gets printed with a "?" indicating that the target couldn't be
> >>Ramon> found. Is there any way to do a pre-flight of a LyX (LaTeX)
> >>Ramon> document to check the references and make sure they are all
> >>Ramon> present and accessible?
> >>
> >>LyX does not have this feature yet. It would certainly be useful...
> >>
> >>JMarc
>
> LaTeX does, look for undefined references in the log file.
> It should not be very hard to search for it and open a warning popup
> I guess as it does something of the kind to re-run LaTeX.
>
>
> --
> Jean-Pierre
>




Re: Bibliographic references spilling over into margins

2001-05-30 Thread Ramon Felciano

 Put \usepackage{apalike} in the preamble.

I tried this but am now getting citation errors:

---
White space in argument---line 326 of file final-draft-v09.aux
 : \citation{Cardelli1991Operations,
 :  Bracha1992Modularity}
I'm skpping whatever remains of this command
---

This seems to only occur with multiple-citation references. I'm using Lyx
1.1.6fix2.

Any suggestions?

Ramon




Re: Bibliographic references spilling over into margins

2001-05-30 Thread Ramon Felciano

 i suppose that you have something like
 \cite{me, you}
 with a space after comma. try to delete it.

Well, yes, but it is Lyx that created that citation entry for me since it
now allows for multiple citations in a single entry. Maybe I'm
misunderstanding how to use this feature?

Ramon





Does LyX complain about broken label or citation references?

2001-05-30 Thread Ramon Felciano

Hi --

I've noticed that LyX (or LaTeX I guess) doesn't seem to complain about
broken label references. Instead, the reference gets printed with a ?
indicating that the target couldn't be found. Is there any way to do a
pre-flight of a LyX (LaTeX) document to check the references and make sure
they are all present and accessible?

Thanks in advance for your time!

Ramon




Re: Bibliographic references spilling over into margins

2001-05-30 Thread Ramon Felciano

Yep, that was the problem. I assumed that upgrading to LyX 1.1.6fix2 would
either fix this problem in a backwards compatible way OR automatically all
multi-citation references to remove the problematic space. In case anyone
else comes across this, here's the Perl script I wrote to remove the spaces:
--
#!/usr/bin/perl
while () {
chop;
if ($_ =~ /\\begin_inset LatexCommand \\cite{(.*)}/) {
$cites = $1;
$cites =~ s/ file://gi;
print \\begin_inset LatexCommand \\cite{$cites}\n;
} else {
print $_ . \n;
}
}
--

Thanks everyone for your help!

Ramon

- Original Message -
From: Dekel Tsur [EMAIL PROTECTED]
To: Ramon Felciano [EMAIL PROTECTED]; LyX users
[EMAIL PROTECTED]
Sent: Wednesday, May 30, 2001 9:50 AM
Subject: Re: Bibliographic references spilling over into margins


 On Wed, May 30, 2001 at 12:54:48PM +0200, Herbert Voss wrote:
  On Wed, 30 May 2001, Ramon Felciano wrote:
Put \usepackage{apalike} in the preamble.
   
   I tried this but am now getting citation errors:
  
   ---
   White space in argument---line 326 of file final-draft-v09.aux
: \citation{Cardelli1991Operations,
:
Bracha1992Modularity}
   I'm skpping whatever remains of this command
   ---
 
  i suppose that you have something like
  \cite{me, you}
  with a space after comma. try to delete it.

 Yes.
 This happens if you created the citation with lyx 1.1.6/1.1.6fix1.
 Citations created with 1.1.6fix2 will be OK.
 To fix old citations, open the .lyx file with some text editor, and remove
the
 spaces.




Re: Bibliographic references spilling over into margins

2001-05-30 Thread Ramon Felciano

 Put \usepackage{apalike} in the preamble.

I tried this but am now getting citation errors:

---
White space in argument---line 326 of file final-draft-v09.aux
 : \citation{Cardelli1991Operations,
 :  Bracha1992Modularity}
I'm skpping whatever remains of this command
---

This seems to only occur with multiple-citation references. I'm using Lyx
1.1.6fix2.

Any suggestions?

Ramon




Re: Bibliographic references spilling over into margins

2001-05-30 Thread Ramon Felciano

 i suppose that you have something like
 \cite{me, you}
 with a space after comma. try to delete it.

Well, yes, but it is Lyx that created that citation entry for me since it
now allows for multiple citations in a single entry. Maybe I'm
misunderstanding how to use this feature?

Ramon





Does LyX complain about broken label or citation references?

2001-05-30 Thread Ramon Felciano

Hi --

I've noticed that LyX (or LaTeX I guess) doesn't seem to complain about
broken label references. Instead, the reference gets printed with a ?
indicating that the target couldn't be found. Is there any way to do a
pre-flight of a LyX (LaTeX) document to check the references and make sure
they are all present and accessible?

Thanks in advance for your time!

Ramon




Re: Bibliographic references spilling over into margins

2001-05-30 Thread Ramon Felciano

Yep, that was the problem. I assumed that upgrading to LyX 1.1.6fix2 would
either fix this problem in a backwards compatible way OR automatically all
multi-citation references to remove the problematic space. In case anyone
else comes across this, here's the Perl script I wrote to remove the spaces:
--
#!/usr/bin/perl
while () {
chop;
if ($_ =~ /\\begin_inset LatexCommand \\cite{(.*)}/) {
$cites = $1;
$cites =~ s/ file://gi;
print \\begin_inset LatexCommand \\cite{$cites}\n;
} else {
print $_ . \n;
}
}
--

Thanks everyone for your help!

Ramon

- Original Message -
From: Dekel Tsur [EMAIL PROTECTED]
To: Ramon Felciano [EMAIL PROTECTED]; LyX users
[EMAIL PROTECTED]
Sent: Wednesday, May 30, 2001 9:50 AM
Subject: Re: Bibliographic references spilling over into margins


 On Wed, May 30, 2001 at 12:54:48PM +0200, Herbert Voss wrote:
  On Wed, 30 May 2001, Ramon Felciano wrote:
Put \usepackage{apalike} in the preamble.
   
   I tried this but am now getting citation errors:
  
   ---
   White space in argument---line 326 of file final-draft-v09.aux
: \citation{Cardelli1991Operations,
:
Bracha1992Modularity}
   I'm skpping whatever remains of this command
   ---
 
  i suppose that you have something like
  \cite{me, you}
  with a space after comma. try to delete it.

 Yes.
 This happens if you created the citation with lyx 1.1.6/1.1.6fix1.
 Citations created with 1.1.6fix2 will be OK.
 To fix old citations, open the .lyx file with some text editor, and remove
the
 spaces.




Re: Bibliographic references spilling over into margins

2001-05-30 Thread Ramon Felciano

> Put \usepackage{apalike} in the preamble.
>
I tried this but am now getting citation errors:

---
White space in argument---line 326 of file final-draft-v09.aux
 : \citation{Cardelli1991Operations,
 :  Bracha1992Modularity}
I'm skpping whatever remains of this command
---

This seems to only occur with multiple-citation references. I'm using Lyx
1.1.6fix2.

Any suggestions?

Ramon




Re: Bibliographic references spilling over into margins

2001-05-30 Thread Ramon Felciano

> i suppose that you have something like
> \cite{me, you}
> with a space after comma. try to delete it.
>
Well, yes, but it is Lyx that created that citation entry for me since it
now allows for multiple citations in a single entry. Maybe I'm
misunderstanding how to use this feature?

Ramon





Does LyX complain about broken label or citation references?

2001-05-30 Thread Ramon Felciano

Hi --

I've noticed that LyX (or LaTeX I guess) doesn't seem to complain about
broken label references. Instead, the reference gets printed with a "?"
indicating that the target couldn't be found. Is there any way to do a
pre-flight of a LyX (LaTeX) document to check the references and make sure
they are all present and accessible?

Thanks in advance for your time!

Ramon




Re: Bibliographic references spilling over into margins

2001-05-30 Thread Ramon Felciano

Yep, that was the problem. I assumed that upgrading to LyX 1.1.6fix2 would
either fix this problem in a backwards compatible way OR automatically all
multi-citation references to remove the problematic space. In case anyone
else comes across this, here's the Perl script I wrote to remove the spaces:
--
#!/usr/bin/perl
while (<>) {
chop;
if ($_ =~ /\\begin_inset LatexCommand \\cite{(.*)}/) {
$cites = $1;
$cites =~ s/ file://gi;
print "\\begin_inset LatexCommand \\cite{$cites}\n";
} else {
print $_ . "\n";
}
}
--

Thanks everyone for your help!

Ramon

- Original Message -
From: "Dekel Tsur" <[EMAIL PROTECTED]>
To: "Ramon Felciano" <[EMAIL PROTECTED]>; "LyX users"
<[EMAIL PROTECTED]>
Sent: Wednesday, May 30, 2001 9:50 AM
Subject: Re: Bibliographic references spilling over into margins


> On Wed, May 30, 2001 at 12:54:48PM +0200, Herbert Voss wrote:
> > On Wed, 30 May 2001, Ramon Felciano wrote:
> > > > Put \usepackage{apalike} in the preamble.
> > > >
> > > I tried this but am now getting citation errors:
> > >
> > > ---
> > > White space in argument---line 326 of file final-draft-v09.aux
> > >  : \citation{Cardelli1991Operations,
> > >  :
Bracha1992Modularity}
> > > I'm skpping whatever remains of this command
> > > ---
> >
> > i suppose that you have something like
> > \cite{me, you}
> > with a space after comma. try to delete it.
>
> Yes.
> This happens if you created the citation with lyx 1.1.6/1.1.6fix1.
> Citations created with 1.1.6fix2 will be OK.
> To fix old citations, open the .lyx file with some text editor, and remove
the
> spaces.




Bibliographic references spilling over into margins

2001-05-27 Thread Ramon Felciano

Hi --

I have noticed that in a few places in my dissertation the references spill
over into margins instead of breaking and/or wrapping down to the next line.
For example, the reference [Microsoft Corporation, 1996] will be written in
block instead of line-breaking between Microsoft and Corporation. This
is probably partially due to the fact that the reference is defined as

author = {Microsoft Corporation, Inc.}

In order to avoid having Inc be the author name that appears in the
reference...

I'm using the apalike BibTex format so I can probably work around this by
switching to a different reference format that uses numbers instead of
chunks of text for the reference, but I'm hoping there is another way to fix
this.

Any ideas?

Ramon




Bibliographic references spilling over into margins

2001-05-27 Thread Ramon Felciano

Hi --

I have noticed that in a few places in my dissertation the references spill
over into margins instead of breaking and/or wrapping down to the next line.
For example, the reference [Microsoft Corporation, 1996] will be written in
block instead of line-breaking between Microsoft and Corporation. This
is probably partially due to the fact that the reference is defined as

author = {Microsoft Corporation, Inc.}

In order to avoid having Inc be the author name that appears in the
reference...

I'm using the apalike BibTex format so I can probably work around this by
switching to a different reference format that uses numbers instead of
chunks of text for the reference, but I'm hoping there is another way to fix
this.

Any ideas?

Ramon




Bibliographic references spilling over into margins

2001-05-27 Thread Ramon Felciano

Hi --

I have noticed that in a few places in my dissertation the references spill
over into margins instead of breaking and/or wrapping down to the next line.
For example, the reference [Microsoft Corporation, 1996] will be written in
block instead of line-breaking between "Microsoft" and "Corporation". This
is probably partially due to the fact that the reference is defined as

author = "{Microsoft Corporation, Inc.}"

In order to avoid having "Inc" be the author name that appears in the
reference...

I'm using the apalike BibTex format so I can probably work around this by
switching to a different reference format that uses numbers instead of
chunks of text for the reference, but I'm hoping there is another way to fix
this.

Any ideas?

Ramon




List of margin notes?

2001-05-20 Thread Ramon Felciano

Hi --

Is there any way to generate a list of margin notes in a similar fashion to
the list of figures, tables and algorithms? I've been using margin notes to
keep notes for myself and would like to collate them into some kind of list
of things I need to tackle in order to wipe out all the margin notes. Is
that possible?

Thanks!

Ramon




Figure and Table captions ignore line space settings

2001-05-20 Thread Ramon Felciano

Hi --

For some reason my figures and tables are ignoring the line space settings
used by the rest of my dissertation. Do these need to be controlled
independently, or is there something misconfigured in my settings?

Thanks!

Ramon




List of margin notes?

2001-05-20 Thread Ramon Felciano

Hi --

Is there any way to generate a list of margin notes in a similar fashion to
the list of figures, tables and algorithms? I've been using margin notes to
keep notes for myself and would like to collate them into some kind of list
of things I need to tackle in order to wipe out all the margin notes. Is
that possible?

Thanks!

Ramon




Figure and Table captions ignore line space settings

2001-05-20 Thread Ramon Felciano

Hi --

For some reason my figures and tables are ignoring the line space settings
used by the rest of my dissertation. Do these need to be controlled
independently, or is there something misconfigured in my settings?

Thanks!

Ramon




List of margin notes?

2001-05-20 Thread Ramon Felciano

Hi --

Is there any way to generate a list of margin notes in a similar fashion to
the list of figures, tables and algorithms? I've been using margin notes to
keep notes for myself and would like to collate them into some kind of "list
of things I need to tackle in order to wipe out all the margin notes". Is
that possible?

Thanks!

Ramon




Figure and Table captions ignore line space settings

2001-05-20 Thread Ramon Felciano

Hi --

For some reason my figures and tables are ignoring the line space settings
used by the rest of my dissertation. Do these need to be controlled
independently, or is there something misconfigured in my settings?

Thanks!

Ramon




How to get Docbook working with Lyx 1.1.6?

2001-04-28 Thread Ramon Felciano

Hello --

I would like to try the LyX 1.1.6 support for DocBook. I've installed
sgmltools and it seems to be installed OK. However, when I create a new
DocBook document type.

1. The Lyx format settings let you select a DocBook article or book; the
online documentation makes no reference to this. Instead, it talks about
LinuxDoc. It's my understanding that these are related but not the same --
which is actually implemented?

2. When I try to generate a PostScript view of my DobBook file, sgmltools
complains that it can't find a stylesheet:

Traceback (innermost last):
  File /usr/bin/sgmltools, line 81, in ?   tool.processFile(curfile)
  File /usr/lib/sgml/misc/sgmltools/python/SGMLtools.py, line 218, in
processFile
dssslfile = utils.findStylesheet(stylesheet, self._aliases)
  File /usr/lib/sgml/misc/sgmltools/python/utils.py, line 307, in
findStylesheet
return findStylesheet(name, aliases)
  File /usr/lib/sgml/misc/sgmltools/python/utils.py, line 317, in
findStylesheet
raise IOError, Couldn't resolve pubid [%s] % id
IOError: Couldn't resolve pubid [-//SGMLtools//DOCUMENT Docbook Style Sheet
for Print//EN]

What causes this? (might be answered below).

3. I looked at http://www.oasis-open.org/docbook/ and there seem to be many
different style sheets in different languages: SGML, XML, XML Schema, etc.
Which should be used? How/where are they installed? Does LyX care which
version of DocBook is being used?

Thanks very much!

Ramon




How to get Docbook working with Lyx 1.1.6?

2001-04-28 Thread Ramon Felciano

Hello --

I would like to try the LyX 1.1.6 support for DocBook. I've installed
sgmltools and it seems to be installed OK. However, when I create a new
DocBook document type.

1. The Lyx format settings let you select a DocBook article or book; the
online documentation makes no reference to this. Instead, it talks about
LinuxDoc. It's my understanding that these are related but not the same --
which is actually implemented?

2. When I try to generate a PostScript view of my DobBook file, sgmltools
complains that it can't find a stylesheet:

Traceback (innermost last):
  File /usr/bin/sgmltools, line 81, in ?   tool.processFile(curfile)
  File /usr/lib/sgml/misc/sgmltools/python/SGMLtools.py, line 218, in
processFile
dssslfile = utils.findStylesheet(stylesheet, self._aliases)
  File /usr/lib/sgml/misc/sgmltools/python/utils.py, line 307, in
findStylesheet
return findStylesheet(name, aliases)
  File /usr/lib/sgml/misc/sgmltools/python/utils.py, line 317, in
findStylesheet
raise IOError, Couldn't resolve pubid [%s] % id
IOError: Couldn't resolve pubid [-//SGMLtools//DOCUMENT Docbook Style Sheet
for Print//EN]

What causes this? (might be answered below).

3. I looked at http://www.oasis-open.org/docbook/ and there seem to be many
different style sheets in different languages: SGML, XML, XML Schema, etc.
Which should be used? How/where are they installed? Does LyX care which
version of DocBook is being used?

Thanks very much!

Ramon




How to get Docbook working with Lyx 1.1.6?

2001-04-28 Thread Ramon Felciano

Hello --

I would like to try the LyX 1.1.6 support for DocBook. I've installed
sgmltools and it seems to be installed OK. However, when I create a new
DocBook document type.

1. The Lyx format settings let you select a DocBook article or book; the
online documentation makes no reference to this. Instead, it talks about
LinuxDoc. It's my understanding that these are related but not the same --
which is actually implemented?

2. When I try to generate a PostScript view of my DobBook file, sgmltools
complains that it can't find a stylesheet:

Traceback (innermost last):
  File "/usr/bin/sgmltools", line 81, in ?   tool.processFile(curfile)
  File "/usr/lib/sgml/misc/sgmltools/python/SGMLtools.py", line 218, in
processFile
dssslfile = utils.findStylesheet(stylesheet, self._aliases)
  File "/usr/lib/sgml/misc/sgmltools/python/utils.py", line 307, in
findStylesheet
return findStylesheet(name, aliases)
  File "/usr/lib/sgml/misc/sgmltools/python/utils.py", line 317, in
findStylesheet
raise IOError, "Couldn't resolve pubid [%s]" % id
IOError: Couldn't resolve pubid ["-//SGMLtools//DOCUMENT Docbook Style Sheet
for Print//EN"]

What causes this? (might be answered below).

3. I looked at http://www.oasis-open.org/docbook/ and there seem to be many
different style sheets in different languages: SGML, XML, XML Schema, etc.
Which should be used? How/where are they installed? Does LyX care which
version of DocBook is being used?

Thanks very much!

Ramon




Re: Trouble with babel and thesis packages under 1.1.6

2001-02-25 Thread Ramon Felciano

This did the trick -- thanks. I'll keep an eye out for the new switch in the
Language prefs if it makes it in to a future version of LyX.

Ramon

- Original Message -
From: "Herbert Voss" [EMAIL PROTECTED]
To: "Ramon Felciano" [EMAIL PROTECTED]
Cc: "(LyX-Users)" [EMAIL PROTECTED]
Sent: Sunday, February 25, 2001 2:58 AM
Subject: Re: Trouble with babel and thesis packages under 1.1.6


 Ramon Felciano wrote:
 
  Hi all --
 
  I'm having difficulties moving my dissertation from 1.1.5 to 1.1.6. I'm
a
  relative LaTeX newbie, but through progressively stripping out parts of
the
  file, it seems like the problem is related to an interaction between the
  babel and suthesis package. Below is a simple LaTeX file that reproduces
the
  symptoms. The dissertation uses the suthesis-2e package
  (http://help-csli.stanford.edu/tex/suthesis/), which works fine under
Lyx
  1.1.5.
 
  Removing either the \usepackage{babel} or the \usrpackage{suthesis-2e}
  reference solves the problem. Given that the babel package seems to be a
new
  inclusion (a Lyx 1.1.5 export-to-latex doesn't show it), can someone
suggest
  how to further resolve this problem?

 try the following:

 save the suthesis-2e.sty in your ~./TeX/ dir and look for the line 234

 \def\language#1{\gdef\@language{#1}} \def\@language{babel}

 and put the comment char % in the first column

 %\def\lan

 Herbert

 --
 [EMAIL PROTECTED]
 http://perce.de/lyx/




Re: Trouble with babel and thesis packages under 1.1.6

2001-02-25 Thread Ramon Felciano

This did the trick -- thanks. I'll keep an eye out for the new switch in the
Language prefs if it makes it in to a future version of LyX.

Ramon

- Original Message -
From: "Herbert Voss" [EMAIL PROTECTED]
To: "Ramon Felciano" [EMAIL PROTECTED]
Cc: "(LyX-Users)" [EMAIL PROTECTED]
Sent: Sunday, February 25, 2001 2:58 AM
Subject: Re: Trouble with babel and thesis packages under 1.1.6


 Ramon Felciano wrote:
 
  Hi all --
 
  I'm having difficulties moving my dissertation from 1.1.5 to 1.1.6. I'm
a
  relative LaTeX newbie, but through progressively stripping out parts of
the
  file, it seems like the problem is related to an interaction between the
  babel and suthesis package. Below is a simple LaTeX file that reproduces
the
  symptoms. The dissertation uses the suthesis-2e package
  (http://help-csli.stanford.edu/tex/suthesis/), which works fine under
Lyx
  1.1.5.
 
  Removing either the \usepackage{babel} or the \usrpackage{suthesis-2e}
  reference solves the problem. Given that the babel package seems to be a
new
  inclusion (a Lyx 1.1.5 export-to-latex doesn't show it), can someone
suggest
  how to further resolve this problem?

 try the following:

 save the suthesis-2e.sty in your ~./TeX/ dir and look for the line 234

 \def\language#1{\gdef\@language{#1}} \def\@language{babel}

 and put the comment char % in the first column

 %\def\lan

 Herbert

 --
 [EMAIL PROTECTED]
 http://perce.de/lyx/




Re: Trouble with babel and thesis packages under 1.1.6

2001-02-25 Thread Ramon Felciano

This did the trick -- thanks. I'll keep an eye out for the new switch in the
Language prefs if it makes it in to a future version of LyX.

Ramon

- Original Message -
From: "Herbert Voss" <[EMAIL PROTECTED]>
To: "Ramon Felciano" <[EMAIL PROTECTED]>
Cc: "(LyX-Users)" <[EMAIL PROTECTED]>
Sent: Sunday, February 25, 2001 2:58 AM
Subject: Re: Trouble with babel and thesis packages under 1.1.6


> Ramon Felciano wrote:
> >
> > Hi all --
> >
> > I'm having difficulties moving my dissertation from 1.1.5 to 1.1.6. I'm
a
> > relative LaTeX newbie, but through progressively stripping out parts of
the
> > file, it seems like the problem is related to an interaction between the
> > babel and suthesis package. Below is a simple LaTeX file that reproduces
the
> > symptoms. The dissertation uses the suthesis-2e package
> > (http://help-csli.stanford.edu/tex/suthesis/), which works fine under
Lyx
> > 1.1.5.
> >
> > Removing either the \usepackage{babel} or the \usrpackage{suthesis-2e}
> > reference solves the problem. Given that the babel package seems to be a
new
> > inclusion (a Lyx 1.1.5 export-to-latex doesn't show it), can someone
suggest
> > how to further resolve this problem?
>
> try the following:
>
> save the suthesis-2e.sty in your ~./TeX/ dir and look for the line 234
>
> \def\language#1{\gdef\@language{#1}} \def\@language{babel}
>
> and put the comment char % in the first column
>
> %\def\lan
>
> Herbert
>
> --
> [EMAIL PROTECTED]
> http://perce.de/lyx/




Trouble with babel and thesis packages under 1.1.6

2001-02-24 Thread Ramon Felciano

Hi all --

I'm having difficulties moving my dissertation from 1.1.5 to 1.1.6. I'm a
relative LaTeX newbie, but through progressively stripping out parts of the
file, it seems like the problem is related to an interaction between the
babel and suthesis package. Below is a simple LaTeX file that reproduces the
symptoms. The dissertation uses the suthesis-2e package
(http://help-csli.stanford.edu/tex/suthesis/), which works fine under Lyx
1.1.5.

Removing either the \usepackage{babel} or the \usrpackage{suthesis-2e}
reference solves the problem. Given that the babel package seems to be a new
inclusion (a Lyx 1.1.5 export-to-latex doesn't show it), can someone suggest
how to further resolve this problem?

Thanks.

Ramon M. Felciano




Trouble with babel and thesis packages under 1.1.6

2001-02-24 Thread Ramon Felciano

Hi all --

I'm having difficulties moving my dissertation from 1.1.5 to 1.1.6. I'm a
relative LaTeX newbie, but through progressively stripping out parts of the
file, it seems like the problem is related to an interaction between the
babel and suthesis package. Below is a simple LaTeX file that reproduces the
symptoms. The dissertation uses the suthesis-2e package
(http://help-csli.stanford.edu/tex/suthesis/), which works fine under Lyx
1.1.5.

Removing either the \usepackage{babel} or the \usrpackage{suthesis-2e}
reference solves the problem. Given that the babel package seems to be a new
inclusion (a Lyx 1.1.5 export-to-latex doesn't show it), can someone suggest
how to further resolve this problem?

Thanks.

Ramon M. Felciano




Trouble with babel and thesis packages under 1.1.6

2001-02-24 Thread Ramon Felciano

Hi all --

I'm having difficulties moving my dissertation from 1.1.5 to 1.1.6. I'm a
relative LaTeX newbie, but through progressively stripping out parts of the
file, it seems like the problem is related to an interaction between the
babel and suthesis package. Below is a simple LaTeX file that reproduces the
symptoms. The dissertation uses the suthesis-2e package
(http://help-csli.stanford.edu/tex/suthesis/), which works fine under Lyx
1.1.5.

Removing either the \usepackage{babel} or the \usrpackage{suthesis-2e}
reference solves the problem. Given that the babel package seems to be a new
inclusion (a Lyx 1.1.5 export-to-latex doesn't show it), can someone suggest
how to further resolve this problem?

Thanks.

Ramon M. Felciano




Re: Typing in Lyx 1.1.6fix1 Win32 hangs

2001-02-21 Thread Ramon Felciano

Yep, this did the trick. Very strange... Thanks!

Ramon

- Original Message -
From: "Jrg Haug" [EMAIL PROTECTED]
To: "Claus Hentschel" [EMAIL PROTECTED]
Cc: "(LyX-Users)" [EMAIL PROTECTED]
Sent: Wednesday, February 21, 2001 7:23 AM
Subject: Re: Typing in Lyx 1.1.6fix1 Win32 hangs


 Claus Hentschel schrieb:

   I'm trying to get the Win32 port of Lyx 1.1.6fix1 working. Most
everything
   seems to be working: I can launch Lyx and open and view files (e.g.
the
  Help
   files). However, if I try to type anything, Lyx hangs. Note that
copy-and-
   paste works fine, it seems only that typing via the keyboard fails.
 
  As I have mentioned on my webpage this may be fixed by installing the
'old'
  X11 dll's available from where you have downloaded LyX itself!
 
  Claus

 Sorry, for me it was fixed by installing the old X11 dlls, too.

 Jrg





Re: Typing in Lyx 1.1.6fix1 Win32 hangs

2001-02-21 Thread Ramon Felciano

Yep, this did the trick. Very strange... Thanks!

Ramon

- Original Message -
From: "Jrg Haug" [EMAIL PROTECTED]
To: "Claus Hentschel" [EMAIL PROTECTED]
Cc: "(LyX-Users)" [EMAIL PROTECTED]
Sent: Wednesday, February 21, 2001 7:23 AM
Subject: Re: Typing in Lyx 1.1.6fix1 Win32 hangs


 Claus Hentschel schrieb:

   I'm trying to get the Win32 port of Lyx 1.1.6fix1 working. Most
everything
   seems to be working: I can launch Lyx and open and view files (e.g.
the
  Help
   files). However, if I try to type anything, Lyx hangs. Note that
copy-and-
   paste works fine, it seems only that typing via the keyboard fails.
 
  As I have mentioned on my webpage this may be fixed by installing the
'old'
  X11 dll's available from where you have downloaded LyX itself!
 
  Claus

 Sorry, for me it was fixed by installing the old X11 dlls, too.

 Jrg





Re: Typing in Lyx 1.1.6fix1 Win32 hangs

2001-02-21 Thread Ramon Felciano

Yep, this did the trick. Very strange... Thanks!

Ramon

- Original Message -
From: "Jörg Haug" <[EMAIL PROTECTED]>
To: "Claus Hentschel" <[EMAIL PROTECTED]>
Cc: "(LyX-Users)" <[EMAIL PROTECTED]>
Sent: Wednesday, February 21, 2001 7:23 AM
Subject: Re: Typing in Lyx 1.1.6fix1 Win32 hangs


> Claus Hentschel schrieb:
>
> > > I'm trying to get the Win32 port of Lyx 1.1.6fix1 working. Most
everything
> > > seems to be working: I can launch Lyx and open and view files (e.g.
the
> > Help
> > > files). However, if I try to type anything, Lyx hangs. Note that
copy-and-
> > > paste works fine, it seems only that typing via the keyboard fails.
> >
> > As I have mentioned on my webpage this may be fixed by installing the
'old'
> > X11 dll's available from where you have downloaded LyX itself!
> >
> > Claus
>
> Sorry, for me it was fixed by installing the old X11 dlls, too.
>
> Jörg
>




Typing in Lyx 1.1.6fix1 Win32 hangs

2001-02-20 Thread Ramon Felciano



Hi --

I'mtrying to get the Win32 port of Lyx 
1.1.6fix1 working. Most everything seems to be working: I can launch Lyx and 
open and view files (e.g. the Help files). However, if I try to type anything, 
Lyx hangs. Note that copy-and-paste works fine, it seems only that typing via 
the keyboard fails.

Any suggestions on how to debug this 
further?

Thanks!

Ramon M. Felciano


Typing in Lyx 1.1.6fix1 Win32 hangs

2001-02-20 Thread Ramon Felciano



Hi --

I'mtrying to get the Win32 port of Lyx 
1.1.6fix1 working. Most everything seems to be working: I can launch Lyx and 
open and view files (e.g. the Help files). However, if I try to type anything, 
Lyx hangs. Note that copy-and-paste works fine, it seems only that typing via 
the keyboard fails.

Any suggestions on how to debug this 
further?

Thanks!

Ramon M. Felciano


Typing in Lyx 1.1.6fix1 Win32 hangs

2001-02-20 Thread Ramon Felciano



Hi --
 
I'm trying to get the Win32 port of Lyx 
1.1.6fix1 working. Most everything seems to be working: I can launch Lyx and 
open and view files (e.g. the Help files). However, if I try to type anything, 
Lyx hangs. Note that copy-and-paste works fine, it seems only that typing via 
the keyboard fails.
 
Any suggestions on how to debug this 
further?
 
Thanks!
 
Ramon M. Felciano