Re: RPM files

2001-08-17 Thread Juergen Vigna
On 16-Aug-2001 Zvezdan Petkovic wrote: That way my rpm shell script is executed when I type rpm ... It adds my rpmrc file, and it adds my macros file. Hence the topdir and tmppath get changed to my directories and I can build as a regular user. I did this but then the files in the

Re:

2001-08-17 Thread Juergen Vigna
On 16-Aug-2001 Ronny Buchmann wrote: i would prefer the the color variant combined with the new version line from the blue ones Hmm I don't really like that version very much I find the original better. Jürgen -- -._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._

Re: Artwork 15.Aug2001

2001-08-17 Thread Andre Poenitz
Because a certain number of people and entities ^ Where does that plural come from? Andre' -- André Pönitz . [EMAIL PROTECTED]

Re: Artwork 15.Aug2001

2001-08-17 Thread Allan Rae
On Fri, 17 Aug 2001, Andre Poenitz wrote: Because a certain number of people and entities ^ Where does that plural come from? Friday-itis. Allan. (ARRae)

Re: RPM files

2001-08-17 Thread Yves Bastide
On Fri, Aug 17, 2001 at 09:30:24AM +0200, Juergen Vigna wrote: On 16-Aug-2001 Zvezdan Petkovic wrote: That way my rpm shell script is executed when I type rpm ... It adds my rpmrc file, and it adds my macros file. Hence the topdir and tmppath get changed to my directories and I can

Re: RPM files

2001-08-17 Thread Ronny Buchmann
* Zvezdan Petkovic [EMAIL PROTECTED] [2001-08-16 22:20] wrote: On Thu, Aug 16, 2001 at 08:41:23PM +0200, Ronny Buchmann wrote: %define _prefix /usr/local you dont need this, use Prefix: /usr/local instead Well, I told you I build RPMs quite often. The above is not correct. You can

Re: table discrepancies

2001-08-17 Thread Dekel Tsur
On Fri, Aug 17, 2001 at 09:09:22AM +0200, Juergen Vigna wrote: On 16-Aug-2001 Dekel Tsur wrote: The problem is that in the cell that contains -signal processing you changed the paragraph alignment to right, which is not allowed (in normal cells). You should change it back to 'block'.

Re: Wheel mouse

2001-08-17 Thread Peter Suetterlin
Amir Karger wrote: In case it's relevant and not reported yet, I believe I found that in LyX1.1.6fix2, if the mouse is over a fig, then the mouse wheel doesn't work. (This might only be when the fig takes up the whole window, but I don't think so.) I suspect It is when the figure is lager

new math parser

2001-08-17 Thread Andre Poenitz
Since nobody was complaining too loudly and it seemingly reads a few of my test files I'll commit the new parser in half an hour or so. It's of course not a full blown TeX parser, but should be extensible in the right direction and it fails more gracefully in case of broken input. Andre' --

1.1.6fix3: Wrong display of figures

2001-08-17 Thread Peter Suetterlin
Hi, Don't know wether this one is already reported: The display of a (scaled) EPS image does not work correctly. If I insert an EPS image and leave the size as standard the display is correct (full image). If I change the size to some given width (e.g. 80% of column) the (displayed) image

math parser compile problems

2001-08-17 Thread Angus Leeming
André, this code snippet from math_parser.C fails to compile because istringstream::get expects a signed char. unsigned char c; while (is.get(c)) Shall I change things here, get it to compile and submit the patch or will changing this break the logic? Angus

Re: math parser compile problems

2001-08-17 Thread Andre Poenitz
istringstream::get expects a signed char. unsigned char c; while (is.get(c)) Shall I change things here, get it to compile and submit the patch or will changing this break the logic? It would break the logic (it's uses as an index in the catcode array). I just submitted a

Re: math parser compile problems

2001-08-17 Thread Angus Leeming
On Friday 17 August 2001 11:21, Andre Poenitz wrote: istringstream::get expects a signed char. unsigned char c; while (is.get(c)) Shall I change things here, get it to compile and submit the patch or will changing this break the logic? It would break the logic (it's

Re: math parser compile problems

2001-08-17 Thread Angus Leeming
On Friday 17 August 2001 11:45, Lars Gullik Bjønnes wrote: Angus Leeming [EMAIL PROTECTED] writes: | On Friday 17 August 2001 11:21, Andre Poenitz wrote: | istringstream::get expects a signed char. | | unsigned char c; | while (is.get(c)) | | Shall I

mathed payback...

2001-08-17 Thread Angus Leeming
André, here are a couple of things that my dinosaur picked up. Angus Index: src/mathed/math_deliminset.C === RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/mathed/math_deliminset.C,v retrieving revision 1.23 diff -u -p -r1.23

Re: math parser compile problems

2001-08-17 Thread Angus Leeming
On Friday 17 August 2001 12:13, Lars Gullik Bjønnes wrote: | nobody has ever answered my original question about | whether and when compilers should generate an | operator!=() if they find an operator==(). No, they shouldn't. A ha! So, if your compilers compiled the code as was, then

Character dialog is broken

2001-08-17 Thread Michael Schmitt
Hi, emphasize a word in plain text by pressing CTRL-e and select the word. Then open the character dialog, set all options to reset (if possible) and press apply - the format of the selected text is not reset! Michael -- ==

Re: Artwork 15.Aug2001

2001-08-17 Thread John Levon
On Fri, Aug 17, 2001 at 12:32:07PM +1000, Allan Rae wrote: On 16 Aug 2001, Lars Gullik Bjønnes wrote: Allan Rae [EMAIL PROTECTED] writes: | This should then make a pleasant background image for the | websites. Why so eager to change the background? Because a certain number of

Re: testing the new math parser

2001-08-17 Thread Dekel Tsur
On Fri, Aug 17, 2001 at 02:19:40PM +0100, Angus Leeming wrote: André, the new parser is very good! I notice, however, that entries like x' seems to get translated to x{backward-facing epsilon}. Also, a space is added after each formula. Namely $a$b is read as $a$ b

Re: Artwork 15.Aug2001

2001-08-17 Thread Andre Poenitz
On Fri, Aug 17, 2001 at 03:24:07PM +0200, Lars Gullik Bjønnes wrote: John Levon [EMAIL PROTECTED] writes: | It's Friday so I can clearly say: I /hate/ the green Hrmpf... I created that green... You might take consolidation in the fact that Konni liked the green very much. Andre' --

Re: math parser compile problems

2001-08-17 Thread Andre Poenitz
Why? Couldn't the compiler transform the expression into: if (!(prevToken() == Token(\\))) {...} I think it is not allowed to do so. I doubt there is a requirement on != being equivalent to !(==). If not, the former could add 1 and 2 and the latter could write to disk. But I haven't checked

WYSIWYG with mathed

2001-08-17 Thread Angus Leeming
Here's a nice little teaser, André, from the Lamport book, page 49 \[ \underbrace{a+\overbrace{b+\cdots +y}^{24} +z}_{26} \] Apparently the 24 should be directly above the overbrace and the 26 directly underneath the underbrace. Doing pretty well though... I've gone through the whole of the

one more (new) mathed bug

2001-08-17 Thread Angus Leeming
It appears that when reading an existing document with some inline math in a paragraph, mathed inserts extra spaces immediately after the math inset in the lyx text. Move the cursor through these spaces and they're gobbled up, one by one. Angus

Re: one more (new) mathed bug

2001-08-17 Thread Angus Leeming
On Friday 17 August 2001 16:28, Angus Leeming wrote: It appears that when reading an existing document with some inline math in a paragraph, mathed inserts extra spaces immediately after the math inset in the lyx text. Move the cursor through these spaces and they're gobbled up, one by

Re: WYSIWYG with mathed

2001-08-17 Thread Andre Poenitz
all the different symbols etc. The only stuff that I've found I can't type in pseudo-LaTeX fashion and get it displayed is \mathrm abc or \mathcal A, etc \sqrt[n] 2 You can type \root \emptyset is displayed, but incorrectly. Well... in addition \{ creates both

Re: one more (new) mathed bug

2001-08-17 Thread Andre Poenitz
On Fri, Aug 17, 2001 at 04:28:42PM +0100, Angus Leeming wrote: It appears that when reading an existing document with some inline math in a paragraph, mathed inserts extra spaces immediately after the math inset in the lyx text. Move the cursor through these spaces and they're gobbled up,

Re: new mathed bug

2001-08-17 Thread Andre Poenitz
create an equation with a label. Save and close the document. Open it again: the label has gone. Fixed. I got it mixed up in the new parser Andre' -- André Pönitz . [EMAIL PROTECTED]

Re: CVS Update: lyx-devel

2001-08-17 Thread John Levon
On Fri, Aug 17, 2001 at 06:34:19PM +, [EMAIL PROTECTED] wrote: Log message: fix 'Uninitialized memory read'. It was not exactly a bug, though... eh ? how does this work ?! john -- If it is all Greek to you, perhaps a trip to Athens is in order. - jjohn, /.

Re: CVS Update: lyx-devel

2001-08-17 Thread Andre Poenitz
Log message: fix 'Uninitialized memory read'. It was not exactly a bug, though... eh ? how does this work ?! It was a bool whose value got passed around into functions that did not use it in those cases where the bool was not initialized. Andre' -- André Pönitz

cv problem: SubSection conversion

2001-08-17 Thread Reuben Thomas
Since SubSection is called that and not Subsection, it doesn't get converted when changing the document class. It would seem to make sense to use the same name as in other classes. -- http://sc3d.org/rrt/ | maximiste, n. pessimiste (Roux)

Re: one more (new) mathed bug

2001-08-17 Thread Angus Leeming
Ok, here's the clean snippet. The dispersion studies above have all used \begin_inset Formula $D=D_{\textrm{mol}}$ \end_inset , the species' coefficient of molecular diffusion. Note no space before final $ and no space on next line before the comma. Read it in, write it out: The

mathed makecvs.log

2001-08-17 Thread Garst R. Reese
gcc-3.0 Garst Making all in mathed make[3]: Entering directory `/usr/local/garst/lyx-devel/src/mathed' /bin/sh ../../libtool --mode=compile g++ -DHAVE_CONFIG_H -I. -I. -I../../src -I./../ -I../.. -I../.. -I../../boost -isystem /usr/X11R6/include -O -W -Wall -c math_parser.C g++

Re: one more (new) mathed bug

2001-08-17 Thread Andre Poenitz
So it appears that the problem really lies in what you do after the \end_inset command. Pretty easy: _I_ do nothing there. I do not even write the \end_inset Andre' -- André Pönitz . [EMAIL PROTECTED]

Re: mathed makecvs.log

2001-08-17 Thread Andre Poenitz
Could you send me your /usr/local/lib/gcc-lib/i586-pc-linux-gnu/3.0/include/g++/bits/std_sstream.h ? Andre' -- André Pönitz . [EMAIL PROTECTED]

Re: mathed makecvs.log

2001-08-17 Thread Andre Poenitz
Not needed. You had a typo (bug) in math_parser.C you used '||' instead of '|' for the ios:: parameters to istringstream. Oops. Andre' -- André Pönitz . [EMAIL PROTECTED]

DocBook status

2001-08-17 Thread David Merrill
Greetings, First, thank you very much for the work you're doing. The LDP is looking forward to being able to use and recommend Lyx for our authors, and so we have been following the DocBook development, although I haven't followed it as closely as I really should. Can you give me an idea of

Re: How do I print duplex?

2001-08-17 Thread Ronny Buchmann
* Ronny Buchmann [EMAIL PROTECTED] [2001-08-17 11:16] wrote: * Steve Litt [EMAIL PROTECTED] [2001-08-17 07:50] wrote: I have an HP4050 which is a duplexing printer that understands Postscript. My lyx file is defined as 2 side, and indeed it has a binding margin that's left on odd pages

Re: How do I print duplex?

2001-08-17 Thread Angus Leeming
On Friday 17 August 2001 10:22, Ronny Buchmann wrote: * Ronny Buchmann [EMAIL PROTECTED] [2001-08-17 11:16] wrote: * Steve Litt [EMAIL PROTECTED] [2001-08-17 07:50] wrote: I have an HP4050 which is a duplexing printer that understands Postscript. My lyx file is defined as 2 side, and

Re: How do I print duplex?

2001-08-17 Thread Ronny Buchmann
* Steve Litt [EMAIL PROTECTED] [2001-08-17 07:50] wrote: I have an HP4050 which is a duplexing printer that understands Postscript. My lyx file is defined as 2 side, and indeed it has a binding margin that's left on odd pages and even on right pages. But I can't find any place to tell the

Re: RPM files

2001-08-17 Thread Juergen Vigna
On 16-Aug-2001 Zvezdan Petkovic wrote: > That way my rpm shell script is executed when I type rpm ... > It adds my rpmrc file, and it adds my macros file. Hence the topdir and > tmppath get changed to my directories and I can build as a regular user. I did this but then the files in the

Re:

2001-08-17 Thread Juergen Vigna
On 16-Aug-2001 Ronny Buchmann wrote: > i would prefer the the color variant combined with the new version line from the blue > ones Hmm I don't really like that version very much I find the original better. Jürgen --

Re: Artwork 15.Aug2001

2001-08-17 Thread Andre Poenitz
> Because a certain number of people and entities ^ Where does that plural come from? Andre' -- André Pönitz . [EMAIL PROTECTED]

Re: Artwork 15.Aug2001

2001-08-17 Thread Allan Rae
On Fri, 17 Aug 2001, Andre Poenitz wrote: > > Because a certain number of people and entities > ^ > Where does that plural come from? Friday-itis. Allan. (ARRae)

Re: RPM files

2001-08-17 Thread Yves Bastide
On Fri, Aug 17, 2001 at 09:30:24AM +0200, Juergen Vigna wrote: > > On 16-Aug-2001 Zvezdan Petkovic wrote: > > > That way my rpm shell script is executed when I type rpm ... > > It adds my rpmrc file, and it adds my macros file. Hence the topdir and > > tmppath get changed to my directories and

Re: RPM files

2001-08-17 Thread Ronny Buchmann
* Zvezdan Petkovic <[EMAIL PROTECTED]> [2001-08-16 22:20] wrote: > On Thu, Aug 16, 2001 at 08:41:23PM +0200, Ronny Buchmann wrote: > > > %define _prefix /usr/local > > you dont need this, use "Prefix: /usr/local" instead > > > > Well, I told you I build RPMs quite often. The above is not

Re: table discrepancies

2001-08-17 Thread Dekel Tsur
On Fri, Aug 17, 2001 at 09:09:22AM +0200, Juergen Vigna wrote: > > On 16-Aug-2001 Dekel Tsur wrote: > > > The problem is that in the cell that contains "-signal processing" you > > changed the paragraph alignment to right, which is not allowed (in normal > > cells). > > You should change it

Re: Wheel mouse

2001-08-17 Thread Peter Suetterlin
Amir Karger wrote: > In case it's relevant and not reported yet, I believe I found that in > LyX1.1.6fix2, if the mouse is over a fig, then the mouse wheel doesn't > work. (This might only be when the fig takes up the whole window, but > I don't think so.) I suspect It is when the figure is

new math parser

2001-08-17 Thread Andre Poenitz
Since nobody was complaining too loudly and it seemingly reads a few of my test files I'll commit the new parser in half an hour or so. It's of course not a full blown TeX parser, but should be extensible in the right direction and it fails more gracefully in case of broken input. Andre' --

1.1.6fix3: Wrong display of figures

2001-08-17 Thread Peter Suetterlin
Hi, Don't know wether this one is already reported: The display of a (scaled) EPS image does not work correctly. If I insert an EPS image and leave the size as standard the display is correct (full image). If I change the size to some given width (e.g. 80% of column) the (displayed) image

math parser compile problems

2001-08-17 Thread Angus Leeming
André, this code snippet from math_parser.C fails to compile because istringstream::get expects a signed char. unsigned char c; while (is.get(c)) Shall I change things here, get it to compile and submit the patch or will changing this break the logic? Angus

Re: math parser compile problems

2001-08-17 Thread Andre Poenitz
> istringstream::get expects a signed char. > > unsigned char c; > while (is.get(c)) > > Shall I change things here, get it to compile and submit the patch or will > changing this break the logic? It would break the logic (it's uses as an index in the catcode array). I just

Re: math parser compile problems

2001-08-17 Thread Angus Leeming
On Friday 17 August 2001 11:21, Andre Poenitz wrote: > > istringstream::get expects a signed char. > > > > unsigned char c; > > while (is.get(c)) > > > > Shall I change things here, get it to compile and submit the patch or will > > changing this break the logic? > > It would break

Re: math parser compile problems

2001-08-17 Thread Angus Leeming
On Friday 17 August 2001 11:45, Lars Gullik Bjønnes wrote: > Angus Leeming <[EMAIL PROTECTED]> writes: > > | On Friday 17 August 2001 11:21, Andre Poenitz wrote: > | > > istringstream::get expects a signed char. > | > > > | > > unsigned char c; > | > > while (is.get(c)) > | > >

mathed payback...

2001-08-17 Thread Angus Leeming
André, here are a couple of things that my dinosaur picked up. Angus Index: src/mathed/math_deliminset.C === RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/mathed/math_deliminset.C,v retrieving revision 1.23 diff -u -p -r1.23

Re: math parser compile problems

2001-08-17 Thread Angus Leeming
On Friday 17 August 2001 12:13, Lars Gullik Bjønnes wrote: > | nobody has ever answered my original question about > | whether and when compilers should generate an > | operator!=() if they find an operator==(). > > No, they shouldn't. A ha! So, if your compilers compiled the code as was,

Character dialog is broken

2001-08-17 Thread Michael Schmitt
Hi, emphasize a word in plain text by pressing CTRL-e and select the word. Then open the character dialog, set all options to "reset" (if possible) and press "apply" -> the format of the selected text is not reset! Michael --

Re: Artwork 15.Aug2001

2001-08-17 Thread John Levon
On Fri, Aug 17, 2001 at 12:32:07PM +1000, Allan Rae wrote: > On 16 Aug 2001, Lars Gullik Bjønnes wrote: > > > Allan Rae <[EMAIL PROTECTED]> writes: > > > > | This should then make a pleasant background image for the > > | websites. > > > > Why so eager to change the background? > > Because a

Re: testing the new math parser

2001-08-17 Thread Dekel Tsur
On Fri, Aug 17, 2001 at 02:19:40PM +0100, Angus Leeming wrote: > André, > > the new parser is very good! I notice, however, that entries like x' seems to > get translated to x{backward-facing epsilon}. Also, a space is added after each formula. Namely $a$b is read as $a$ b

Re: Artwork 15.Aug2001

2001-08-17 Thread Andre Poenitz
On Fri, Aug 17, 2001 at 03:24:07PM +0200, Lars Gullik Bjønnes wrote: > John Levon <[EMAIL PROTECTED]> writes: > > | It's Friday so I can clearly say: I /hate/ the green > > Hrmpf... I created that green... You might take consolidation in the fact that Konni liked the green very much. Andre'

Re: math parser compile problems

2001-08-17 Thread Andre Poenitz
> Why? Couldn't the compiler transform the expression into: > > if (!(prevToken() == Token("\\"))) {...} I think it is not allowed to do so. I doubt there is a requirement on != being equivalent to !(==). If not, the former could add 1 and 2 and the latter could write to disk. But I haven't

WYSIWYG with mathed

2001-08-17 Thread Angus Leeming
Here's a nice little teaser, André, from the Lamport book, page 49 \[ \underbrace{a+\overbrace{b+\cdots +y}^{24} +z}_{26} \] Apparently the "24" should be directly above the overbrace and the "26" directly underneath the underbrace. Doing pretty well though... I've gone through the whole of

one more (new) mathed bug

2001-08-17 Thread Angus Leeming
It appears that when reading an existing document with some inline math in a paragraph, mathed inserts extra spaces immediately after the math inset in the lyx text. Move the cursor through these spaces and they're gobbled up, one by one. Angus

Re: one more (new) mathed bug

2001-08-17 Thread Angus Leeming
On Friday 17 August 2001 16:28, Angus Leeming wrote: > It appears that when reading an existing document with some inline math in a > paragraph, mathed inserts extra spaces immediately after the math inset in > the lyx text. Move the cursor through these spaces and they're gobbled up, > one

Re: WYSIWYG with mathed

2001-08-17 Thread Andre Poenitz
> all the different symbols etc. The only stuff that I've found I can't type in > pseudo-LaTeX fashion and get it displayed is > \mathrm abc or \mathcal A, etc > \sqrt[n] 2 You can type \root > \emptyset is displayed, but incorrectly. Well... > in addition "\{"

Re: one more (new) mathed bug

2001-08-17 Thread Andre Poenitz
On Fri, Aug 17, 2001 at 04:28:42PM +0100, Angus Leeming wrote: > It appears that when reading an existing document with some inline math in a > paragraph, mathed inserts extra spaces immediately after the math inset in > the lyx text. Move the cursor through these spaces and they're gobbled up,

Re: new mathed bug

2001-08-17 Thread Andre Poenitz
> create an equation with a label. Save and close the document. Open it again: > the label has gone. Fixed. I got it mixed up in the new parser Andre' -- André Pönitz . [EMAIL PROTECTED]

Re: CVS Update: lyx-devel

2001-08-17 Thread John Levon
On Fri, Aug 17, 2001 at 06:34:19PM +, [EMAIL PROTECTED] wrote: > Log message: > fix 'Uninitialized memory read'. It was not exactly a bug, though... eh ? how does this work ?! john -- "If it is "all Greek to you", perhaps a trip to Athens is in order." - jjohn, /.

Re: CVS Update: lyx-devel

2001-08-17 Thread Andre Poenitz
> > Log message: > > fix 'Uninitialized memory read'. It was not exactly a bug, though... > > eh ? how does this work ?! It was a bool whose value got passed around into functions that did not use it in those cases where the bool was not initialized. Andre' -- André Pönitz

cv problem: SubSection conversion

2001-08-17 Thread Reuben Thomas
Since SubSection is called that and not Subsection, it doesn't get converted when changing the document class. It would seem to make sense to use the same name as in other classes. -- http://sc3d.org/rrt/ | maximiste, n. pessimiste (Roux)

Re: one more (new) mathed bug

2001-08-17 Thread Angus Leeming
Ok, here's the clean snippet. The dispersion studies above have all used \begin_inset Formula $D=D_{\textrm{mol}}$ \end_inset , the species' coefficient of molecular diffusion. Note no space before final $ and no space on next line before the comma. Read it in, write it out: The

mathed makecvs.log

2001-08-17 Thread Garst R. Reese
gcc-3.0 Garst Making all in mathed make[3]: Entering directory `/usr/local/garst/lyx-devel/src/mathed' /bin/sh ../../libtool --mode=compile g++ -DHAVE_CONFIG_H -I. -I. -I../../src -I./../ -I../.. -I../.. -I../../boost -isystem /usr/X11R6/include -O -W -Wall -c math_parser.C g++

Re: one more (new) mathed bug

2001-08-17 Thread Andre Poenitz
> So it appears that the problem really lies in what you do after the > \end_inset command. Pretty easy: _I_ do nothing there. I do not even write the \end_inset Andre' -- André Pönitz . [EMAIL PROTECTED]

Re: mathed makecvs.log

2001-08-17 Thread Andre Poenitz
Could you send me your /usr/local/lib/gcc-lib/i586-pc-linux-gnu/3.0/include/g++/bits/std_sstream.h ? Andre' -- André Pönitz . [EMAIL PROTECTED]

Re: mathed makecvs.log

2001-08-17 Thread Andre Poenitz
> Not needed. You had a typo (bug) in math_parser.C > > you used '||' instead of '|' for the ios:: parameters to > istringstream. Oops. Andre' -- André Pönitz . [EMAIL PROTECTED]

DocBook status

2001-08-17 Thread David Merrill
Greetings, First, thank you very much for the work you're doing. The LDP is looking forward to being able to use and recommend Lyx for our authors, and so we have been following the DocBook development, although I haven't followed it as closely as I really should. Can you give me an idea of

Re: How do I print duplex?

2001-08-17 Thread Ronny Buchmann
* Ronny Buchmann <[EMAIL PROTECTED]> [2001-08-17 11:16] wrote: > * Steve Litt <[EMAIL PROTECTED]> [2001-08-17 07:50] wrote: > > I have an HP4050 which is a duplexing printer that understands Postscript. My > > lyx file is defined as 2 side, and indeed it has a binding margin that's left > > on

Re: How do I print duplex?

2001-08-17 Thread Angus Leeming
On Friday 17 August 2001 10:22, Ronny Buchmann wrote: > * Ronny Buchmann <[EMAIL PROTECTED]> [2001-08-17 11:16] wrote: > > * Steve Litt <[EMAIL PROTECTED]> [2001-08-17 07:50] wrote: > > > I have an HP4050 which is a duplexing printer that understands Postscript. My > > > lyx file is defined as

Re: How do I print duplex?

2001-08-17 Thread Ronny Buchmann
* Steve Litt <[EMAIL PROTECTED]> [2001-08-17 07:50] wrote: > I have an HP4050 which is a duplexing printer that understands Postscript. My > lyx file is defined as 2 side, and indeed it has a binding margin that's left > on odd pages and even on right pages. But I can't find any place to tell