Re: I get only partial dvi/ps output

2001-04-20 Thread Herbert Voss

Christopher Jones wrote:
 
 For some reason I cannot generate complete output for one document
 in particular. If I print to file, view postscript or dvi, export to postscript
 or dvi, the displayed output stops at page four. If I view pdf or pdflatex, gs
 comes up, stopped at page four. If I view html, I get the complete document.

which lyx version?

 I have tried other files, and they work just fine. I can't think of any changes
 I made to anything, which might account for this, and I don't really know how
 to track down the problem. I suppose it must be something to do with the dvi,
 since latex2html does its job.

latex2html needs a tex-file, nothing more. it never makes
a syntax check. therefore it's ok when you get all of
your text converted.
i suppose that there is a problem with latex behind your
page four. have a look at your code in your lyx-file, if
there is something like latex code, special commands,
which can make trouble.


Herbert


-- 
http:[EMAIL PROTECTED]





eps extract from pdf file

2001-04-20 Thread Jean-Pierre.Chretien



Sorry for this question a bit off the scope of the list.
Once I have a pdf file exported from ps, and including
eps figures,  is it possible to get back these figures
with their original vector structure ?
A quick test using pdf2ps shows that the text info is lost.

-- 
Jean-Pierre




Re: article (koma-script) with smallest font size

2001-04-20 Thread Jacek M. Holeczek

Hi,
Many thanks to all who replied pointing me to the "extsizes" package.
Using it's 8pt fontsize almost solved my problem (I installed the
"extsizes" from CTAN and then added the "\usepackage[8pt]{extsizes}"
to the document's "Layout - LaTeX Preamble" - koma-script documents
need nothing more).
Well, why almost ... ?
I get the correct font size, but ... somehow margins are extremely wide.
I use A4 paper and I'd like to have around 1.5cm margins, but I get ...
the left and the right margins are about about 4.5cm, the top margin is 
about 5cm, the bottom margin is about 2.5cm.
I tried to change "Layout - Paper Layout - Papersize - A4" and then
"Layout - Paper Layout - Margins - [Top, Bottom, Left, Right] -10mm",
but there is no visible effect (I still get these "wide" margins").
Could you, please, help me,
Thanks in advance,
Jacek.




Re: article (koma-script) with smallest font size

2001-04-20 Thread Herbert Voss

"Jacek M. Holeczek" wrote:
 
 Hi,
 Many thanks to all who replied pointing me to the "extsizes" package.
 Using it's 8pt fontsize almost solved my problem (I installed the
 "extsizes" from CTAN and then added the "\usepackage[8pt]{extsizes}"
 to the document's "Layout - LaTeX Preamble" - koma-script documents
 need nothing more).
 Well, why almost ... ?
 I get the correct font size, but ... somehow margins are extremely wide.
 I use A4 paper and I'd like to have around 1.5cm margins, but I get ...
 the left and the right margins are about about 4.5cm, the top margin is
 about 5cm, the bottom margin is about 2.5cm.
 I tried to change "Layout - Paper Layout - Papersize - A4" and then
 "Layout - Paper Layout - Margins - [Top, Bottom, Left, Right] -10mm",
 but there is no visible effect (I still get these "wide" margins").

do you have layout-document-page-use package geometry button on?

Herbert


-- 
http:[EMAIL PROTECTED]



Re: article (koma-script) with smallest font size

2001-04-20 Thread Jacek M. Holeczek

 do you have layout-document-page-use package geometry button on?
Yes I do.
As soon as you try to modify the "Margins" LyX automatically switches
"geometry package" on.
Jacek.




Re: article (koma-script) with smallest font size

2001-04-20 Thread Herbert Voss

"Jacek M. Holeczek" wrote:
 
  do you have layout-document-page-use package geometry button on?
 Yes I do.
 As soon as you try to modify the "Margins" LyX automatically switches
 "geometry package" on.
 Jacek.

can you send a short lyx example-file which shows this behaviour?
Herbert


-- 
http:[EMAIL PROTECTED]



Re: article (koma-script) with smallest font size

2001-04-20 Thread Jacek M. Holeczek

 can you send a short lyx example-file which shows this behaviour?
1. copy the /usr/share/lyx/doc/Intro.lyx into your private
   subdirectory
2. edit it : "lyx Intro.lyx"
3. "Layout - Document Layout - Class - article (koma-script)"
4. "Layout - Paper Layout - Margins - [Top ... Right] - 0mm"
5. "File - View dvi"
You should see the first page of the "Intro" without any margins (0mm).
Then add :
6. "Layout - LaTeX Preamble - \usepackage[8pt]{extsizes}"
7. "File - View dvi"
And you see the first page of the "Intro" with wide margins.
If it matters - I use LyX Version 1.1.5fix2 on a RH6.1/i386 machine.
Jacek.
P.S. As soon as the 1.1.6fix2 is there I intend to switch to it. Jacek.




problem with lyx-code

2001-04-20 Thread monty

Some people has asked me for a small effect not desider when they write a "n"
after a blankspace in the enviroment lyx-code with language Spanish. The fact is
that when they do the ps, the " n" become "". 

I've tried the same, but i don't suffer this effect, while other four people do.
The example they gave me is attached.

Any idea?
 lyx-bug.lyx


Re: article (koma-script) with smallest font size

2001-04-20 Thread Herbert Voss

"Jacek M. Holeczek" wrote:
 
 And you see the first page of the "Intro" with wide margins.
 If it matters - I use LyX Version 1.1.5fix2 on a RH6.1/i386 machine.
 Jacek.
 P.S. As soon as the 1.1.6fix2 is there I intend to switch to it. Jacek.

it's not a real roblem of lyx.
extsizes has to be load before the geometry package, because
it defines the margins new. but lyx does it vice versa.
therefore switch off the "use package geometry"-button and 
write in latex preamble 

\usepackage[8pt]{extsizes}
\usepackage{geometry}
\geometry{verbose,a4paper,tmargin=0cm,bmargin=0cm,lmargin=0cm,rmargin=0cm}

for the margins write what you need.

Herbert

-- 
http:[EMAIL PROTECTED]



Re: article (koma-script) with smallest font size

2001-04-20 Thread Jacek M. Holeczek

Hi,
 (...)
 extsizes has to be load before the geometry package, because
 it defines the margins new. but lyx does it vice versa.
 therefore switch off the "use package geometry"-button and 
 write in latex preamble 
 
 \usepackage[8pt]{extsizes}
 \usepackage{geometry}
 \geometry{verbose,a4paper,tmargin=0cm,bmargin=0cm,lmargin=0cm,rmargin=0cm}
 
 for the margins write what you need.
 (...)
Many, many thanks.
Could you also, please, add this information into your nice :
http://www.educat.hu-berlin.de/~voss/lyx/extsizes.html
Best regards,
Jacek.




Re: article (koma-script) with smallest font size

2001-04-20 Thread Herbert Voss

"Jacek M. Holeczek" wrote:
 
  \usepackage[8pt]{extsizes}
  \usepackage{geometry}
  \geometry{verbose,a4paper,tmargin=0cm,bmargin=0cm,lmargin=0cm,rmargin=0cm}
 
  for the margins write what you need.
  (...)
 Many, many thanks.
 Could you also, please, add this information into your nice :
 http://www.educat.hu-berlin.de/~voss/lyx/extsizes.html

done!
but you don't have this problem when you choose the
_class_ extarticle and not the style-package.

Herbert

-- 
http:[EMAIL PROTECTED]



Re: lyx.org domain fee

2001-04-20 Thread Garst R. Reese

Lars Gullik Bjnnes wrote:
 
 The lyx.org domain is up for renewal, and I am going to be so bold
 that I ask is some faithful user will be willing to sponsor the LyX
 project with this.
 
 The fee covers two years and is 70$ US.
 
 If someone steps forward, I will send the information needed to that
 individual.
 
 Tia,
 
 --
 Lgb
I can handle that.
Garst



Re: lyx.org domain fee

2001-04-20 Thread Lars Gullik Bjønnes

"Garst R. Reese" [EMAIL PROTECTED] writes:

|  The fee covers two years and is 70$ US.
|  
|  If someone steps forward, I will send the information needed to that
|  individual.

| I can handle that.
| Garst

Ok, Garst won this one.

I'll send the needed information privately.

-- 
Lgb



Re: I get only partial dvi/ps output

2001-04-20 Thread Christopher Jones

I'm using 1.1.6. The document was created in that version.

No figures in the document.

I haven't tried printing it on paper. I tried printing it to file and got the
same stuff, so I figured priting to paper would do the same as printing to file.

The line that ends page four is "...extrinsic denomination of existing in a
place. But this" and then it stops. I don't see anything in the code that could
be a mistake. But then I might just not know enough.

Also, I did try just copying the text into another document, in case something
had gotten corrupted. That didn't work either.


On Fri, 20 Apr 2001, you wrote:
 On Thu, 19 Apr 2001 19:04:28 -0500 wrote Christopher Jones [EMAIL PROTECTED]:
 
  For some reason I cannot generate complete output for one document
  in particular. If I print to file, view postscript or dvi, export to postscript
  or dvi, the displayed output stops at page four. If I view pdf or pdflatex, gs
  comes up, stopped at page four. If I view html, I get the complete document. 
  
  I have tried other files, and they work just fine. I can't think of any changes
  I made to anything, which might account for this, and I don't really know how
  to track down the problem. I suppose it must be something to do with the dvi,
  since latex2html does its job.

#LyX 1.1 created this file. For more info see http://www.lyx.org/
\lyxformat 218
\textclass article
\begin_preamble
\usepackage{abbrevs}
\usepackage{achicago}
\usepackage{attrib}
\usepackage{philabbrevs}

\newabbrev\oni{\emph{On Nature Itself} (1698)}
\end_preamble
\language english
\inputencoding latin1
\fontscheme times
\graphics default
\paperfontsize 12
\spacing double 
\papersize letterpaper
\paperpackage a4
\use_geometry 1
\use_amsmath 0
\paperorientation portrait
\leftmargin 1in
\topmargin 1in
\rightmargin 1in
\bottommargin 1in
\secnumdepth 3
\tocdepth 3
\paragraph_separation skip
\defskip medskip
\quotes_language english
\quotes_times 2
\papercolumns 1
\papersides 1
\paperpagestyle plain

\layout Author

Christopher M.
 Jones
\layout Title

From Physics to Metaphsics
\layout Subsection

Introduction
\layout Standard

The main thesis in 
\latex latex 

\backslash 
S13
\latex default 
 
\latex latex 
of 
\backslash 
oni
\latex default 
 is that 
\begin_inset Quotes eld
\end_inset 

we must necessarily place something in bodies over and above uniform mass
 and its transposition
\begin_inset Quotes erd
\end_inset 

.
 Though it is true that this section presents a largely, and perhaps even
 entirely negative argument against the Cartesian notion of extension, it's
 aim is more positive than just this.
 
\layout Standard

Though I profess dissagreement with both the interpretations I review, my
 dissagreement is on different grounds with respect to each of them.
 Regarding the Garber/Adams interpretation, I align myself with Lodge in
 his criticisms.
 Regarding Lodge's insterpretation, I consider my interpretation to be an
 extension of and a further reflection on some of the hermaneutical issues
 he raises at the conclusion of his paper which, though it does not consitute
 a substantial disagreement, nevertheless places the argument in a slightly
 different light.
 
\layout Subsection

Division of the argument
\layout Standard

Both of the interpretations I review here understand Leibniz's argument
 as primarily a negative one, primarily concerned to show up the Cartesian
 notion of body as merely extended to be inadequate.
 This is reflected in the divisions of the argument offered by its respective
 commentators.
 Against these views, which I shall discuss following my discussion of the
 argument itself, I offer an interpretation recognizing one major division
 in the section as a whole, the latter of which contains the thesis of the
 section as a whole, which the conclusions of the previous one are meant
 to support.
 
\layout Subsection

Sturm's Cartesian view of body
\layout Enumerate

In 
\latex latex 

\backslash 
oni
\latex default 
 Leibniz presents an argument which Daniel Garber characterizes as showing
 that 
\begin_inset Quotes eld
\end_inset 

if the world is full, and full of matter uniform in its nature (both of
 which follow from the doctrine of body as exension Descartes held), then
 change is impossible
\begin_inset Quotes erd
\end_inset 

 
\latex latex 

\backslash 
cite[286]{Garber-CCL}
\latex default 
.
 
\layout Enumerate

From section twelve, we know that Leibniz takes Sturm to be committed to
 two related positions with respect to substance and matter.
 
\begin_deeper 
\layout Enumerate

On the one hand, he is committed to the essential passivity of matter (matter
 is a passive substance), from which it would follow that bodies, or the
 things in bodies, being only modifications of matter, would be essentially
 passive.
 
\layout Enumerate

On the other hand, he is committed to a view of motion as consisting of
 no more than the successive existence of the moving thing in different
 places.
\end_deeper 

Re: I get only partial dvi/ps output

2001-04-20 Thread Herbert Voss

Christopher Jones wrote:
 
 I'm using 1.1.6. The document was created in that version.
 
 No figures in the document.
 
 I haven't tried printing it on paper. I tried printing it to file and got the
 same stuff, so I figured priting to paper would do the same as printing to file.
 
 The line that ends page four is "...extrinsic denomination of existing in a
 place. But this" and then it stops. I don't see anything in the code that could
 be a mistake. But then I might just not know enough.

where can i get \usepackage{philabbrevs} or send it by private mail
to save bandwidth

Herbert

-- 
http:[EMAIL PROTECTED]



Re: I get only partial dvi/ps output

2001-04-20 Thread Herbert Voss

Christopher Jones wrote:
 
 I'm using 1.1.6. The document was created in that version.
 
 No figures in the document.
 
 I haven't tried printing it on paper. I tried printing it to file and got the
 same stuff, so I figured priting to paper would do the same as printing to file.
 
 The line that ends page four is "...extrinsic denomination of existing in a
 place. But this" and then it stops. I don't see anything in the code that could
 be a mistake. But then I might just not know enough.
 
 Also, I did try just copying the text into another document, in case something
 had gotten corrupted. That didn't work either.

ok, i got it.
as i said, it must be a problem on page 5


discrimination in bodies, nor could we ever explain the different
appearances we sense. \attrib{\cite[164]{ag}.
 ^^


a missing parenthesis ... :-)


Herbert


-- 
http:[EMAIL PROTECTED]



Re: I get only partial dvi/ps output

2001-04-20 Thread Herbert Voss

Herbert Voss wrote:

 appearances we sense. \attrib{\cite[164]{ag}.
  ^^

uups! not there, but here and the end of \attrib

\attrib{\cite[164]{ag}}

Herbert

-- 
http:[EMAIL PROTECTED]



Re: I am still having problems to install - Solaris

2001-04-20 Thread Jean-Marc Lasgouttes

 "leo" == leo ber [EMAIL PROTECTED] writes:

leo Hi I am still trying to install Lyx on Solaris 8. I was having
leo problems when I was running make, so somebody suggest me to use
leo gmake. I got gmake and installed it...fi... and then when I
leo use gmake on the lyx installation , I got a little bit farther
leo but gmake crashes too reporting this:

What version of CC is that? We are currently trying to make LyX
compile with CC 6.0 revision 1 (or whatever the latest is), but we are
not there yet. 

Do you have access to gcc 2.95.2?

JMarc




Re: Bug message -- core dump when closing Preferences window

2001-04-20 Thread Jean-Marc Lasgouttes

 "Matej" == Matej Cepl [EMAIL PROTECTED] writes:

Matej just to know you that when I have been closing Preference
Matej window with binary rpm lyx 1.1.6fix1 (RedHat 7.0, XFree86
Matej 4.0.1, KDE 2.1) lyx core dumped. GDB where is enclosed.

Unfortunately, this backtrace is not very useful, since you use a
stripped binary...

JMarc



Re: I get only partial dvi/ps output

2001-04-20 Thread Herbert Voss

Christopher Jones wrote:
 
 For some reason I cannot generate complete output for one document
 in particular. If I print to file, view postscript or dvi, export to postscript
 or dvi, the displayed output stops at page four. If I view pdf or pdflatex, gs
 comes up, stopped at page four. If I view html, I get the complete document.

which lyx version?

 I have tried other files, and they work just fine. I can't think of any changes
 I made to anything, which might account for this, and I don't really know how
 to track down the problem. I suppose it must be something to do with the dvi,
 since latex2html does its job.

latex2html needs a tex-file, nothing more. it never makes
a syntax check. therefore it's ok when you get all of
your text converted.
i suppose that there is a problem with latex behind your
page four. have a look at your code in your lyx-file, if
there is something like latex code, special commands,
which can make trouble.


Herbert


-- 
http:[EMAIL PROTECTED]





eps extract from pdf file

2001-04-20 Thread Jean-Pierre.Chretien



Sorry for this question a bit off the scope of the list.
Once I have a pdf file exported from ps, and including
eps figures,  is it possible to get back these figures
with their original vector structure ?
A quick test using pdf2ps shows that the text info is lost.

-- 
Jean-Pierre




Re: article (koma-script) with smallest font size

2001-04-20 Thread Jacek M. Holeczek

Hi,
Many thanks to all who replied pointing me to the "extsizes" package.
Using it's 8pt fontsize almost solved my problem (I installed the
"extsizes" from CTAN and then added the "\usepackage[8pt]{extsizes}"
to the document's "Layout - LaTeX Preamble" - koma-script documents
need nothing more).
Well, why almost ... ?
I get the correct font size, but ... somehow margins are extremely wide.
I use A4 paper and I'd like to have around 1.5cm margins, but I get ...
the left and the right margins are about about 4.5cm, the top margin is 
about 5cm, the bottom margin is about 2.5cm.
I tried to change "Layout - Paper Layout - Papersize - A4" and then
"Layout - Paper Layout - Margins - [Top, Bottom, Left, Right] -10mm",
but there is no visible effect (I still get these "wide" margins").
Could you, please, help me,
Thanks in advance,
Jacek.




Re: article (koma-script) with smallest font size

2001-04-20 Thread Herbert Voss

"Jacek M. Holeczek" wrote:
 
 Hi,
 Many thanks to all who replied pointing me to the "extsizes" package.
 Using it's 8pt fontsize almost solved my problem (I installed the
 "extsizes" from CTAN and then added the "\usepackage[8pt]{extsizes}"
 to the document's "Layout - LaTeX Preamble" - koma-script documents
 need nothing more).
 Well, why almost ... ?
 I get the correct font size, but ... somehow margins are extremely wide.
 I use A4 paper and I'd like to have around 1.5cm margins, but I get ...
 the left and the right margins are about about 4.5cm, the top margin is
 about 5cm, the bottom margin is about 2.5cm.
 I tried to change "Layout - Paper Layout - Papersize - A4" and then
 "Layout - Paper Layout - Margins - [Top, Bottom, Left, Right] -10mm",
 but there is no visible effect (I still get these "wide" margins").

do you have layout-document-page-use package geometry button on?

Herbert


-- 
http:[EMAIL PROTECTED]



Re: article (koma-script) with smallest font size

2001-04-20 Thread Jacek M. Holeczek

 do you have layout-document-page-use package geometry button on?
Yes I do.
As soon as you try to modify the "Margins" LyX automatically switches
"geometry package" on.
Jacek.




Re: article (koma-script) with smallest font size

2001-04-20 Thread Herbert Voss

"Jacek M. Holeczek" wrote:
 
  do you have layout-document-page-use package geometry button on?
 Yes I do.
 As soon as you try to modify the "Margins" LyX automatically switches
 "geometry package" on.
 Jacek.

can you send a short lyx example-file which shows this behaviour?
Herbert


-- 
http:[EMAIL PROTECTED]



Re: article (koma-script) with smallest font size

2001-04-20 Thread Jacek M. Holeczek

 can you send a short lyx example-file which shows this behaviour?
1. copy the /usr/share/lyx/doc/Intro.lyx into your private
   subdirectory
2. edit it : "lyx Intro.lyx"
3. "Layout - Document Layout - Class - article (koma-script)"
4. "Layout - Paper Layout - Margins - [Top ... Right] - 0mm"
5. "File - View dvi"
You should see the first page of the "Intro" without any margins (0mm).
Then add :
6. "Layout - LaTeX Preamble - \usepackage[8pt]{extsizes}"
7. "File - View dvi"
And you see the first page of the "Intro" with wide margins.
If it matters - I use LyX Version 1.1.5fix2 on a RH6.1/i386 machine.
Jacek.
P.S. As soon as the 1.1.6fix2 is there I intend to switch to it. Jacek.




problem with lyx-code

2001-04-20 Thread monty

Some people has asked me for a small effect not desider when they write a "n"
after a blankspace in the enviroment lyx-code with language Spanish. The fact is
that when they do the ps, the " n" become "". 

I've tried the same, but i don't suffer this effect, while other four people do.
The example they gave me is attached.

Any idea?
 lyx-bug.lyx


Re: article (koma-script) with smallest font size

2001-04-20 Thread Herbert Voss

"Jacek M. Holeczek" wrote:
 
 And you see the first page of the "Intro" with wide margins.
 If it matters - I use LyX Version 1.1.5fix2 on a RH6.1/i386 machine.
 Jacek.
 P.S. As soon as the 1.1.6fix2 is there I intend to switch to it. Jacek.

it's not a real roblem of lyx.
extsizes has to be load before the geometry package, because
it defines the margins new. but lyx does it vice versa.
therefore switch off the "use package geometry"-button and 
write in latex preamble 

\usepackage[8pt]{extsizes}
\usepackage{geometry}
\geometry{verbose,a4paper,tmargin=0cm,bmargin=0cm,lmargin=0cm,rmargin=0cm}

for the margins write what you need.

Herbert

-- 
http:[EMAIL PROTECTED]



Re: article (koma-script) with smallest font size

2001-04-20 Thread Jacek M. Holeczek

Hi,
 (...)
 extsizes has to be load before the geometry package, because
 it defines the margins new. but lyx does it vice versa.
 therefore switch off the "use package geometry"-button and 
 write in latex preamble 
 
 \usepackage[8pt]{extsizes}
 \usepackage{geometry}
 \geometry{verbose,a4paper,tmargin=0cm,bmargin=0cm,lmargin=0cm,rmargin=0cm}
 
 for the margins write what you need.
 (...)
Many, many thanks.
Could you also, please, add this information into your nice :
http://www.educat.hu-berlin.de/~voss/lyx/extsizes.html
Best regards,
Jacek.




Re: article (koma-script) with smallest font size

2001-04-20 Thread Herbert Voss

"Jacek M. Holeczek" wrote:
 
  \usepackage[8pt]{extsizes}
  \usepackage{geometry}
  \geometry{verbose,a4paper,tmargin=0cm,bmargin=0cm,lmargin=0cm,rmargin=0cm}
 
  for the margins write what you need.
  (...)
 Many, many thanks.
 Could you also, please, add this information into your nice :
 http://www.educat.hu-berlin.de/~voss/lyx/extsizes.html

done!
but you don't have this problem when you choose the
_class_ extarticle and not the style-package.

Herbert

-- 
http:[EMAIL PROTECTED]



Re: lyx.org domain fee

2001-04-20 Thread Garst R. Reese

Lars Gullik Bjnnes wrote:
 
 The lyx.org domain is up for renewal, and I am going to be so bold
 that I ask is some faithful user will be willing to sponsor the LyX
 project with this.
 
 The fee covers two years and is 70$ US.
 
 If someone steps forward, I will send the information needed to that
 individual.
 
 Tia,
 
 --
 Lgb
I can handle that.
Garst



Re: lyx.org domain fee

2001-04-20 Thread Lars Gullik Bjønnes

"Garst R. Reese" [EMAIL PROTECTED] writes:

|  The fee covers two years and is 70$ US.
|  
|  If someone steps forward, I will send the information needed to that
|  individual.

| I can handle that.
| Garst

Ok, Garst won this one.

I'll send the needed information privately.

-- 
Lgb



Re: I get only partial dvi/ps output

2001-04-20 Thread Christopher Jones

I'm using 1.1.6. The document was created in that version.

No figures in the document.

I haven't tried printing it on paper. I tried printing it to file and got the
same stuff, so I figured priting to paper would do the same as printing to file.

The line that ends page four is "...extrinsic denomination of existing in a
place. But this" and then it stops. I don't see anything in the code that could
be a mistake. But then I might just not know enough.

Also, I did try just copying the text into another document, in case something
had gotten corrupted. That didn't work either.


On Fri, 20 Apr 2001, you wrote:
 On Thu, 19 Apr 2001 19:04:28 -0500 wrote Christopher Jones [EMAIL PROTECTED]:
 
  For some reason I cannot generate complete output for one document
  in particular. If I print to file, view postscript or dvi, export to postscript
  or dvi, the displayed output stops at page four. If I view pdf or pdflatex, gs
  comes up, stopped at page four. If I view html, I get the complete document. 
  
  I have tried other files, and they work just fine. I can't think of any changes
  I made to anything, which might account for this, and I don't really know how
  to track down the problem. I suppose it must be something to do with the dvi,
  since latex2html does its job.

#LyX 1.1 created this file. For more info see http://www.lyx.org/
\lyxformat 218
\textclass article
\begin_preamble
\usepackage{abbrevs}
\usepackage{achicago}
\usepackage{attrib}
\usepackage{philabbrevs}

\newabbrev\oni{\emph{On Nature Itself} (1698)}
\end_preamble
\language english
\inputencoding latin1
\fontscheme times
\graphics default
\paperfontsize 12
\spacing double 
\papersize letterpaper
\paperpackage a4
\use_geometry 1
\use_amsmath 0
\paperorientation portrait
\leftmargin 1in
\topmargin 1in
\rightmargin 1in
\bottommargin 1in
\secnumdepth 3
\tocdepth 3
\paragraph_separation skip
\defskip medskip
\quotes_language english
\quotes_times 2
\papercolumns 1
\papersides 1
\paperpagestyle plain

\layout Author

Christopher M.
 Jones
\layout Title

From Physics to Metaphsics
\layout Subsection

Introduction
\layout Standard

The main thesis in 
\latex latex 

\backslash 
S13
\latex default 
 
\latex latex 
of 
\backslash 
oni
\latex default 
 is that 
\begin_inset Quotes eld
\end_inset 

we must necessarily place something in bodies over and above uniform mass
 and its transposition
\begin_inset Quotes erd
\end_inset 

.
 Though it is true that this section presents a largely, and perhaps even
 entirely negative argument against the Cartesian notion of extension, it's
 aim is more positive than just this.
 
\layout Standard

Though I profess dissagreement with both the interpretations I review, my
 dissagreement is on different grounds with respect to each of them.
 Regarding the Garber/Adams interpretation, I align myself with Lodge in
 his criticisms.
 Regarding Lodge's insterpretation, I consider my interpretation to be an
 extension of and a further reflection on some of the hermaneutical issues
 he raises at the conclusion of his paper which, though it does not consitute
 a substantial disagreement, nevertheless places the argument in a slightly
 different light.
 
\layout Subsection

Division of the argument
\layout Standard

Both of the interpretations I review here understand Leibniz's argument
 as primarily a negative one, primarily concerned to show up the Cartesian
 notion of body as merely extended to be inadequate.
 This is reflected in the divisions of the argument offered by its respective
 commentators.
 Against these views, which I shall discuss following my discussion of the
 argument itself, I offer an interpretation recognizing one major division
 in the section as a whole, the latter of which contains the thesis of the
 section as a whole, which the conclusions of the previous one are meant
 to support.
 
\layout Subsection

Sturm's Cartesian view of body
\layout Enumerate

In 
\latex latex 

\backslash 
oni
\latex default 
 Leibniz presents an argument which Daniel Garber characterizes as showing
 that 
\begin_inset Quotes eld
\end_inset 

if the world is full, and full of matter uniform in its nature (both of
 which follow from the doctrine of body as exension Descartes held), then
 change is impossible
\begin_inset Quotes erd
\end_inset 

 
\latex latex 

\backslash 
cite[286]{Garber-CCL}
\latex default 
.
 
\layout Enumerate

From section twelve, we know that Leibniz takes Sturm to be committed to
 two related positions with respect to substance and matter.
 
\begin_deeper 
\layout Enumerate

On the one hand, he is committed to the essential passivity of matter (matter
 is a passive substance), from which it would follow that bodies, or the
 things in bodies, being only modifications of matter, would be essentially
 passive.
 
\layout Enumerate

On the other hand, he is committed to a view of motion as consisting of
 no more than the successive existence of the moving thing in different
 places.
\end_deeper 

Re: I get only partial dvi/ps output

2001-04-20 Thread Herbert Voss

Christopher Jones wrote:
 
 I'm using 1.1.6. The document was created in that version.
 
 No figures in the document.
 
 I haven't tried printing it on paper. I tried printing it to file and got the
 same stuff, so I figured priting to paper would do the same as printing to file.
 
 The line that ends page four is "...extrinsic denomination of existing in a
 place. But this" and then it stops. I don't see anything in the code that could
 be a mistake. But then I might just not know enough.

where can i get \usepackage{philabbrevs} or send it by private mail
to save bandwidth

Herbert

-- 
http:[EMAIL PROTECTED]



Re: I get only partial dvi/ps output

2001-04-20 Thread Herbert Voss

Christopher Jones wrote:
 
 I'm using 1.1.6. The document was created in that version.
 
 No figures in the document.
 
 I haven't tried printing it on paper. I tried printing it to file and got the
 same stuff, so I figured priting to paper would do the same as printing to file.
 
 The line that ends page four is "...extrinsic denomination of existing in a
 place. But this" and then it stops. I don't see anything in the code that could
 be a mistake. But then I might just not know enough.
 
 Also, I did try just copying the text into another document, in case something
 had gotten corrupted. That didn't work either.

ok, i got it.
as i said, it must be a problem on page 5


discrimination in bodies, nor could we ever explain the different
appearances we sense. \attrib{\cite[164]{ag}.
 ^^


a missing parenthesis ... :-)


Herbert


-- 
http:[EMAIL PROTECTED]



Re: I get only partial dvi/ps output

2001-04-20 Thread Herbert Voss

Herbert Voss wrote:

 appearances we sense. \attrib{\cite[164]{ag}.
  ^^

uups! not there, but here and the end of \attrib

\attrib{\cite[164]{ag}}

Herbert

-- 
http:[EMAIL PROTECTED]



Re: I am still having problems to install - Solaris

2001-04-20 Thread Jean-Marc Lasgouttes

 "leo" == leo ber [EMAIL PROTECTED] writes:

leo Hi I am still trying to install Lyx on Solaris 8. I was having
leo problems when I was running make, so somebody suggest me to use
leo gmake. I got gmake and installed it...fi... and then when I
leo use gmake on the lyx installation , I got a little bit farther
leo but gmake crashes too reporting this:

What version of CC is that? We are currently trying to make LyX
compile with CC 6.0 revision 1 (or whatever the latest is), but we are
not there yet. 

Do you have access to gcc 2.95.2?

JMarc




Re: Bug message -- core dump when closing Preferences window

2001-04-20 Thread Jean-Marc Lasgouttes

 "Matej" == Matej Cepl [EMAIL PROTECTED] writes:

Matej just to know you that when I have been closing Preference
Matej window with binary rpm lyx 1.1.6fix1 (RedHat 7.0, XFree86
Matej 4.0.1, KDE 2.1) lyx core dumped. GDB where is enclosed.

Unfortunately, this backtrace is not very useful, since you use a
stripped binary...

JMarc



Re: I get only partial dvi/ps output

2001-04-20 Thread Herbert Voss

Christopher Jones wrote:
> 
> For some reason I cannot generate complete output for one document
> in particular. If I print to file, view postscript or dvi, export to postscript
> or dvi, the displayed output stops at page four. If I view pdf or pdflatex, gs
> comes up, stopped at page four. If I view html, I get the complete document.

which lyx version?

> I have tried other files, and they work just fine. I can't think of any changes
> I made to anything, which might account for this, and I don't really know how
> to track down the problem. I suppose it must be something to do with the dvi,
> since latex2html does its job.

latex2html needs a tex-file, nothing more. it never makes
a syntax check. therefore it's ok when you get all of
your text converted.
i suppose that there is a problem with latex behind your
page four. have a look at your code in your lyx-file, if
there is something like latex code, special commands,
which can make trouble.


Herbert


-- 
http:[EMAIL PROTECTED]





eps extract from pdf file

2001-04-20 Thread Jean-Pierre.Chretien



Sorry for this question a bit off the scope of the list.
Once I have a pdf file exported from ps, and including
eps figures,  is it possible to get back these figures
with their original vector structure ?
A quick test using pdf2ps shows that the text info is lost.

-- 
Jean-Pierre




Re: article (koma-script) with smallest font size

2001-04-20 Thread Jacek M. Holeczek

Hi,
Many thanks to all who replied pointing me to the "extsizes" package.
Using it's 8pt fontsize almost solved my problem (I installed the
"extsizes" from CTAN and then added the "\usepackage[8pt]{extsizes}"
to the document's "Layout -> LaTeX Preamble" - koma-script documents
need nothing more).
Well, why almost ... ?
I get the correct font size, but ... somehow margins are extremely wide.
I use A4 paper and I'd like to have around 1.5cm margins, but I get ...
the left and the right margins are about about 4.5cm, the top margin is 
about 5cm, the bottom margin is about 2.5cm.
I tried to change "Layout -> Paper Layout -> Papersize -> A4" and then
"Layout -> Paper Layout -> Margins -> [Top, Bottom, Left, Right] ->10mm",
but there is no visible effect (I still get these "wide" margins").
Could you, please, help me,
Thanks in advance,
Jacek.




Re: article (koma-script) with smallest font size

2001-04-20 Thread Herbert Voss

"Jacek M. Holeczek" wrote:
> 
> Hi,
> Many thanks to all who replied pointing me to the "extsizes" package.
> Using it's 8pt fontsize almost solved my problem (I installed the
> "extsizes" from CTAN and then added the "\usepackage[8pt]{extsizes}"
> to the document's "Layout -> LaTeX Preamble" - koma-script documents
> need nothing more).
> Well, why almost ... ?
> I get the correct font size, but ... somehow margins are extremely wide.
> I use A4 paper and I'd like to have around 1.5cm margins, but I get ...
> the left and the right margins are about about 4.5cm, the top margin is
> about 5cm, the bottom margin is about 2.5cm.
> I tried to change "Layout -> Paper Layout -> Papersize -> A4" and then
> "Layout -> Paper Layout -> Margins -> [Top, Bottom, Left, Right] ->10mm",
> but there is no visible effect (I still get these "wide" margins").

do you have layout->document->page->use package geometry button on?

Herbert


-- 
http:[EMAIL PROTECTED]



Re: article (koma-script) with smallest font size

2001-04-20 Thread Jacek M. Holeczek

> do you have layout->document->page->use package geometry button on?
Yes I do.
As soon as you try to modify the "Margins" LyX automatically switches
"geometry package" on.
Jacek.




Re: article (koma-script) with smallest font size

2001-04-20 Thread Herbert Voss

"Jacek M. Holeczek" wrote:
> 
> > do you have layout->document->page->use package geometry button on?
> Yes I do.
> As soon as you try to modify the "Margins" LyX automatically switches
> "geometry package" on.
> Jacek.

can you send a short lyx example-file which shows this behaviour?
Herbert


-- 
http:[EMAIL PROTECTED]



Re: article (koma-script) with smallest font size

2001-04-20 Thread Jacek M. Holeczek

> can you send a short lyx example-file which shows this behaviour?
1. copy the /usr/share/lyx/doc/Intro.lyx into your private
   subdirectory
2. edit it : "lyx Intro.lyx"
3. "Layout -> Document Layout -> Class -> article (koma-script)"
4. "Layout -> Paper Layout -> Margins -> [Top ... Right] -> 0mm"
5. "File -> View dvi"
You should see the first page of the "Intro" without any margins (0mm).
Then add :
6. "Layout -> LaTeX Preamble -> \usepackage[8pt]{extsizes}"
7. "File -> View dvi"
And you see the first page of the "Intro" with wide margins.
If it matters - I use LyX Version 1.1.5fix2 on a RH6.1/i386 machine.
Jacek.
P.S. As soon as the 1.1.6fix2 is there I intend to switch to it. Jacek.




problem with lyx-code

2001-04-20 Thread monty

Some people has asked me for a small effect not desider when they write a "n"
after a blankspace in the enviroment lyx-code with language Spanish. The fact is
that when they do the ps, the " n" become "ñ". 

I've tried the same, but i don't suffer this effect, while other four people do.
The example they gave me is attached.

Any idea?
 lyx-bug.lyx


Re: article (koma-script) with smallest font size

2001-04-20 Thread Herbert Voss

"Jacek M. Holeczek" wrote:
> 
> And you see the first page of the "Intro" with wide margins.
> If it matters - I use LyX Version 1.1.5fix2 on a RH6.1/i386 machine.
> Jacek.
> P.S. As soon as the 1.1.6fix2 is there I intend to switch to it. Jacek.

it's not a real roblem of lyx.
extsizes has to be load before the geometry package, because
it defines the margins new. but lyx does it vice versa.
therefore switch off the "use package geometry"-button and 
write in latex preamble 

\usepackage[8pt]{extsizes}
\usepackage{geometry}
\geometry{verbose,a4paper,tmargin=0cm,bmargin=0cm,lmargin=0cm,rmargin=0cm}

for the margins write what you need.

Herbert

-- 
http:[EMAIL PROTECTED]



Re: article (koma-script) with smallest font size

2001-04-20 Thread Jacek M. Holeczek

Hi,
> (...)
> extsizes has to be load before the geometry package, because
> it defines the margins new. but lyx does it vice versa.
> therefore switch off the "use package geometry"-button and 
> write in latex preamble 
> 
> \usepackage[8pt]{extsizes}
> \usepackage{geometry}
> \geometry{verbose,a4paper,tmargin=0cm,bmargin=0cm,lmargin=0cm,rmargin=0cm}
> 
> for the margins write what you need.
> (...)
Many, many thanks.
Could you also, please, add this information into your nice :
http://www.educat.hu-berlin.de/~voss/lyx/extsizes.html
Best regards,
Jacek.




Re: article (koma-script) with smallest font size

2001-04-20 Thread Herbert Voss

"Jacek M. Holeczek" wrote:
> 
> > \usepackage[8pt]{extsizes}
> > \usepackage{geometry}
> > \geometry{verbose,a4paper,tmargin=0cm,bmargin=0cm,lmargin=0cm,rmargin=0cm}
> >
> > for the margins write what you need.
> > (...)
> Many, many thanks.
> Could you also, please, add this information into your nice :
> http://www.educat.hu-berlin.de/~voss/lyx/extsizes.html

done!
but you don't have this problem when you choose the
_class_ extarticle and not the style-package.

Herbert

-- 
http:[EMAIL PROTECTED]



Re: lyx.org domain fee

2001-04-20 Thread Garst R. Reese

Lars Gullik Bjønnes wrote:
> 
> The lyx.org domain is up for renewal, and I am going to be so bold
> that I ask is some faithful user will be willing to sponsor the LyX
> project with this.
> 
> The fee covers two years and is 70$ US.
> 
> If someone steps forward, I will send the information needed to that
> individual.
> 
> Tia,
> 
> --
> Lgb
I can handle that.
Garst



Re: lyx.org domain fee

2001-04-20 Thread Lars Gullik Bjønnes

"Garst R. Reese" <[EMAIL PROTECTED]> writes:

| > The fee covers two years and is 70$ US.
| > 
| > If someone steps forward, I will send the information needed to that
| > individual.

| I can handle that.
| Garst

Ok, Garst won this one.

I'll send the needed information privately.

-- 
Lgb



Re: I get only partial dvi/ps output

2001-04-20 Thread Christopher Jones

I'm using 1.1.6. The document was created in that version.

No figures in the document.

I haven't tried printing it on paper. I tried printing it to file and got the
same stuff, so I figured priting to paper would do the same as printing to file.

The line that ends page four is "...extrinsic denomination of existing in a
place. But this" and then it stops. I don't see anything in the code that could
be a mistake. But then I might just not know enough.

Also, I did try just copying the text into another document, in case something
had gotten corrupted. That didn't work either.


On Fri, 20 Apr 2001, you wrote:
> On Thu, 19 Apr 2001 19:04:28 -0500 wrote Christopher Jones <[EMAIL PROTECTED]>:
> 
> > For some reason I cannot generate complete output for one document
> > in particular. If I print to file, view postscript or dvi, export to postscript
> > or dvi, the displayed output stops at page four. If I view pdf or pdflatex, gs
> > comes up, stopped at page four. If I view html, I get the complete document. 
> > 
> > I have tried other files, and they work just fine. I can't think of any changes
> > I made to anything, which might account for this, and I don't really know how
> > to track down the problem. I suppose it must be something to do with the dvi,
> > since latex2html does its job.

#LyX 1.1 created this file. For more info see http://www.lyx.org/
\lyxformat 218
\textclass article
\begin_preamble
\usepackage{abbrevs}
\usepackage{achicago}
\usepackage{attrib}
\usepackage{philabbrevs}

\newabbrev\oni{\emph{On Nature Itself} (1698)}
\end_preamble
\language english
\inputencoding latin1
\fontscheme times
\graphics default
\paperfontsize 12
\spacing double 
\papersize letterpaper
\paperpackage a4
\use_geometry 1
\use_amsmath 0
\paperorientation portrait
\leftmargin 1in
\topmargin 1in
\rightmargin 1in
\bottommargin 1in
\secnumdepth 3
\tocdepth 3
\paragraph_separation skip
\defskip medskip
\quotes_language english
\quotes_times 2
\papercolumns 1
\papersides 1
\paperpagestyle plain

\layout Author

Christopher M.
 Jones
\layout Title

From Physics to Metaphsics
\layout Subsection

Introduction
\layout Standard

The main thesis in 
\latex latex 

\backslash 
S13
\latex default 
 
\latex latex 
of 
\backslash 
oni
\latex default 
 is that 
\begin_inset Quotes eld
\end_inset 

we must necessarily place something in bodies over and above uniform mass
 and its transposition
\begin_inset Quotes erd
\end_inset 

.
 Though it is true that this section presents a largely, and perhaps even
 entirely negative argument against the Cartesian notion of extension, it's
 aim is more positive than just this.
 
\layout Standard

Though I profess dissagreement with both the interpretations I review, my
 dissagreement is on different grounds with respect to each of them.
 Regarding the Garber/Adams interpretation, I align myself with Lodge in
 his criticisms.
 Regarding Lodge's insterpretation, I consider my interpretation to be an
 extension of and a further reflection on some of the hermaneutical issues
 he raises at the conclusion of his paper which, though it does not consitute
 a substantial disagreement, nevertheless places the argument in a slightly
 different light.
 
\layout Subsection

Division of the argument
\layout Standard

Both of the interpretations I review here understand Leibniz's argument
 as primarily a negative one, primarily concerned to show up the Cartesian
 notion of body as merely extended to be inadequate.
 This is reflected in the divisions of the argument offered by its respective
 commentators.
 Against these views, which I shall discuss following my discussion of the
 argument itself, I offer an interpretation recognizing one major division
 in the section as a whole, the latter of which contains the thesis of the
 section as a whole, which the conclusions of the previous one are meant
 to support.
 
\layout Subsection

Sturm's Cartesian view of body
\layout Enumerate

In 
\latex latex 

\backslash 
oni
\latex default 
 Leibniz presents an argument which Daniel Garber characterizes as showing
 that 
\begin_inset Quotes eld
\end_inset 

if the world is full, and full of matter uniform in its nature (both of
 which follow from the doctrine of body as exension Descartes held), then
 change is impossible
\begin_inset Quotes erd
\end_inset 

 
\latex latex 

\backslash 
cite[286]{Garber-CCL}
\latex default 
.
 
\layout Enumerate

From section twelve, we know that Leibniz takes Sturm to be committed to
 two related positions with respect to substance and matter.
 
\begin_deeper 
\layout Enumerate

On the one hand, he is committed to the essential passivity of matter (matter
 is a passive substance), from which it would follow that bodies, or the
 things in bodies, being only modifications of matter, would be essentially
 passive.
 
\layout Enumerate

On the other hand, he is committed to a view of motion as consisting of
 no more than the successive existence of the moving thing in different
 

Re: I get only partial dvi/ps output

2001-04-20 Thread Herbert Voss

Christopher Jones wrote:
> 
> I'm using 1.1.6. The document was created in that version.
> 
> No figures in the document.
> 
> I haven't tried printing it on paper. I tried printing it to file and got the
> same stuff, so I figured priting to paper would do the same as printing to file.
> 
> The line that ends page four is "...extrinsic denomination of existing in a
> place. But this" and then it stops. I don't see anything in the code that could
> be a mistake. But then I might just not know enough.

where can i get \usepackage{philabbrevs} or send it by private mail
to save bandwidth

Herbert

-- 
http:[EMAIL PROTECTED]



Re: I get only partial dvi/ps output

2001-04-20 Thread Herbert Voss

Christopher Jones wrote:
> 
> I'm using 1.1.6. The document was created in that version.
> 
> No figures in the document.
> 
> I haven't tried printing it on paper. I tried printing it to file and got the
> same stuff, so I figured priting to paper would do the same as printing to file.
> 
> The line that ends page four is "...extrinsic denomination of existing in a
> place. But this" and then it stops. I don't see anything in the code that could
> be a mistake. But then I might just not know enough.
> 
> Also, I did try just copying the text into another document, in case something
> had gotten corrupted. That didn't work either.

ok, i got it.
as i said, it must be a problem on page 5


discrimination in bodies, nor could we ever explain the different
appearances we sense. \attrib{\cite[164]{ag}.
 ^^


a missing parenthesis ... :-)


Herbert


-- 
http:[EMAIL PROTECTED]



Re: I get only partial dvi/ps output

2001-04-20 Thread Herbert Voss

Herbert Voss wrote:

> appearances we sense. \attrib{\cite[164]{ag}.
>  ^^

uups! not there, but here and the end of \attrib

\attrib{\cite[164]{ag}}

Herbert

-- 
http:[EMAIL PROTECTED]



Re: I am still having problems to install - Solaris

2001-04-20 Thread Jean-Marc Lasgouttes

> "leo" == leo ber <[EMAIL PROTECTED]> writes:

leo> Hi I am still trying to install Lyx on Solaris 8. I was having
leo> problems when I was running make, so somebody suggest me to use
leo> gmake. I got gmake and installed it...fi... and then when I
leo> use gmake on the lyx installation , I got a little bit farther
leo> but gmake crashes too reporting this:

What version of CC is that? We are currently trying to make LyX
compile with CC 6.0 revision 1 (or whatever the latest is), but we are
not there yet. 

Do you have access to gcc 2.95.2?

JMarc




Re: Bug message -- core dump when closing Preferences window

2001-04-20 Thread Jean-Marc Lasgouttes

> "Matej" == Matej Cepl <[EMAIL PROTECTED]> writes:

Matej> just to know you that when I have been closing Preference
Matej> window with binary rpm lyx 1.1.6fix1 (RedHat 7.0, XFree86
Matej> 4.0.1, KDE 2.1) lyx core dumped. GDB where is enclosed.

Unfortunately, this backtrace is not very useful, since you use a
stripped binary...

JMarc