Re: How does LyX compile to PDF?

2011-07-07 Thread Liviu Andronic
On Fri, Jul 8, 2011 at 12:40 AM, Michael Joyner wrote: >> >> >> If you read the output from latex (yes, there's a lot of output and quite >> little of it is relevant), it will tell you when it needs to be rerun. LyX >> catches those messages and runs latex again, until the number of latex runs >>

Re: How does LyX compile to PDF?

2011-07-07 Thread Michael Joyner
> > > > If you read the output from latex (yes, there's a lot of output and quite > little of it is relevant), it will tell you when it needs to be rerun. LyX > catches those messages and runs latex again, until the number of latex runs > is exactly sufficient to produce the final output. > Not al

Re: How does LyX compile to PDF?

2011-07-07 Thread Julien Rioux
On 25/06/2011 7:51 PM, Steve Litt wrote: Most of the solution was that I ran the latex command too few times -- two instead of three (or maybe more). If someone writes the list with evidence that a LyX-internal compile acts differently than a sequence of equivalent commands, ask him to run latex

Re: How does LyX compile to PDF?

2011-06-25 Thread Steve Litt
Most of the solution was that I ran the latex command too few times -- two instead of three (or maybe more). If someone writes the list with evidence that a LyX-internal compile acts differently than a sequence of equivalent commands, ask him to run latex a couple more times at the end. It does

Re: How does LyX compile to PDF?

2011-06-25 Thread Steve Litt
On Saturday 25 June 2011 15:47:37 Steve Litt wrote: > But more than anything else, I just want to understand this > discrepancy? What is the difference between LyX view->PDF (ps2pdf) > and an equivalent script. What is the difference between > File->export- > > >LaTeX and lyx --export pdf? Once I

Re: How does LyX compile to PDF?

2011-06-25 Thread Steve Litt
On Saturday 25 June 2011 08:46:33 you wrote: > Am 24.06.2011 21:04, schrieb Steve Litt: > > The following shellscript compiles my PDF: > > > > = > > #!/bin/bash > > > > rm -f junk.* > > cp -p larry.lyx junk.lyx > > lyx --export latex junk.lyx > > latex junk.tex > > mak

Re: How does LyX compile to PDF?

2011-06-25 Thread Uwe Stöhr
Am 24.06.2011 21:04, schrieb Steve Litt: The following shellscript compiles my PDF: = #!/bin/bash rm -f junk.* cp -p larry.lyx junk.lyx lyx --export latex junk.lyx latex junk.tex makeindex -c -q junk.idx latex junk.tex dvips junk.dvi ps2pdf13 junk.ps acroread junk.

How does LyX compile to PDF?

2011-06-24 Thread Steve Litt
Hi all, The following shellscript compiles my PDF: = #!/bin/bash rm -f junk.* cp -p larry.lyx junk.lyx lyx --export latex junk.lyx latex junk.tex makeindex -c -q junk.idx latex junk.tex dvips junk.dvi ps2pdf13 junk.ps acroread junk.pdf =