Re: pdflatex don't work with images

2001-02-04 Thread Dekel Tsur

On Thu, Feb 01, 2001 at 11:46:42PM +0100, [EMAIL PROTECTED] wrote:
 with the same source.  You don't have to export the tex-file and edit
 it, you can do that directly within LyX : in the figure dialog box,
 enter the filename without its prefix (but you lose the preview !).

You don't lose the preview in 1.1.6.



Re: pdflatex don't work with images

2001-02-04 Thread Dekel Tsur

On Thu, Feb 01, 2001 at 11:46:42PM +0100, [EMAIL PROTECTED] wrote:
 with the same source.  You don't have to export the tex-file and edit
 it, you can do that directly within LyX : in the figure dialog box,
 enter the filename without its prefix (but you lose the preview !).

You don't lose the preview in 1.1.6.



Re: pdflatex don't work with images

2001-02-04 Thread Dekel Tsur

On Thu, Feb 01, 2001 at 11:46:42PM +0100, [EMAIL PROTECTED] wrote:
> with the same source.  You don't have to export the tex-file and edit
> it, you can do that directly within LyX : in the figure dialog box,
> enter the filename without its prefix (but you lose the preview !).

You don't lose the preview in 1.1.6.



Re: pdflatex don't work with images

2001-02-01 Thread Tuukka Toivonen

On Thu, 1 Feb 2001, Thomas Templin wrote:

 Thursday,  February 1st 2001 07:11 Herbert Voss wrote:
 1. LyX-Menu: File Export PDF(pdflatex) is just what I'm using. Up 
 to now i used ps2pdf for transforming my Documents and it's been ok, 
 butwhithout Hyperrefs. -Which IMO will make a PDF-Document more 
 usable-

I did the following, with very good results:
1.  Export your document as LaTeX from LyX
2.  Convert all your eps files to pdf using something like
for i in *.eps; do epstopdf $i; done
(ie. epstopdf command).
3.  Remove the following lines from your exported TeX file:
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
(otherwise you won't get scalable fonts)
4.  Change all ".eps" extensions in the exported TeX file to
".pdf". You can do this with something like
sed 's,\.eps,\.pdf,g' input.tex output.tex
5.  Run pdflatex on the TeX file.

This doesn't seem to give hyperlinks, but it should be possible
by adding something to the preamble. Also this might not be the simplest
way to do this but it worked for me.




Re: pdflatex don't work with images

2001-02-01 Thread Stephan E. Schlierf

Hi Thomas,
you still can export your file to postscript and then use ps2pdf to
convert it: Add the folling line - as one line - to your LaTeX preamble

\usepackage[ps2pdf,pdftitle={the title of your document},pdfauthor={the
name of the
author},linkcolor=blue,linktocpage,colorlinks=true]{hyperref} 

where hyperref gives you links, linkcolor is the color of the links,
linktocpage guarantees that in the toc only the page numbers are links,
not the whole heading.

Be sure that you installed hyperref ...
Happy LyXing :-)

Stephan



Re: pdflatex don't work with images

2001-02-01 Thread Tuukka Toivonen

On Thu, 1 Feb 2001, Thomas Templin wrote:

 Thursday,  February 1st 2001 07:11 Herbert Voss wrote:
 1. LyX-Menu: File Export PDF(pdflatex) is just what I'm using. Up 
 to now i used ps2pdf for transforming my Documents and it's been ok, 
 butwhithout Hyperrefs. -Which IMO will make a PDF-Document more 
 usable-

I did the following, with very good results:
1.  Export your document as LaTeX from LyX
2.  Convert all your eps files to pdf using something like
for i in *.eps; do epstopdf $i; done
(ie. epstopdf command).
3.  Remove the following lines from your exported TeX file:
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
(otherwise you won't get scalable fonts)
4.  Change all ".eps" extensions in the exported TeX file to
".pdf". You can do this with something like
sed 's,\.eps,\.pdf,g' input.tex output.tex
5.  Run pdflatex on the TeX file.

This doesn't seem to give hyperlinks, but it should be possible
by adding something to the preamble. Also this might not be the simplest
way to do this but it worked for me.




Re: pdflatex don't work with images

2001-02-01 Thread Stephan E. Schlierf

Hi Thomas,
you still can export your file to postscript and then use ps2pdf to
convert it: Add the folling line - as one line - to your LaTeX preamble

\usepackage[ps2pdf,pdftitle={the title of your document},pdfauthor={the
name of the
author},linkcolor=blue,linktocpage,colorlinks=true]{hyperref} 

where hyperref gives you links, linkcolor is the color of the links,
linktocpage guarantees that in the toc only the page numbers are links,
not the whole heading.

Be sure that you installed hyperref ...
Happy LyXing :-)

Stephan



Re: pdflatex don't work with images

2001-02-01 Thread Tuukka Toivonen

On Thu, 1 Feb 2001, Thomas Templin wrote:

> Thursday,  February 1st 2001 07:11 Herbert Voss wrote:
> 1. LyX-Menu: File >Export >PDF(pdflatex) is just what I'm using. Up 
> to now i used ps2pdf for transforming my Documents and it's been ok, 
> butwhithout Hyperrefs. -Which IMO will make a PDF-Document more 
> usable-

I did the following, with very good results:
1.  Export your document as LaTeX from LyX
2.  Convert all your eps files to pdf using something like
for i in *.eps; do epstopdf $i; done
(ie. epstopdf command).
3.  Remove the following lines from your exported TeX file:
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
(otherwise you won't get scalable fonts)
4.  Change all ".eps" extensions in the exported TeX file to
".pdf". You can do this with something like
sed 's,\.eps,\.pdf,g' output.tex
5.  Run pdflatex on the TeX file.

This doesn't seem to give hyperlinks, but it should be possible
by adding something to the preamble. Also this might not be the simplest
way to do this but it worked for me.




Re: pdflatex don't work with images

2001-02-01 Thread Stephan E. Schlierf

Hi Thomas,
you still can export your file to postscript and then use ps2pdf to
convert it: Add the folling line - as one line - to your LaTeX preamble

\usepackage[ps2pdf,pdftitle={the title of your document},pdfauthor={the
name of the
author},linkcolor=blue,linktocpage,colorlinks=true]{hyperref} 

where hyperref gives you links, linkcolor is the color of the links,
linktocpage guarantees that in the toc only the page numbers are links,
not the whole heading.

Be sure that you installed hyperref ...
Happy LyXing :-)

Stephan



Re: pdflatex don't work with images

2001-01-31 Thread Thomas Templin

Thursday,  February 1st 2001 07:11 Herbert Voss wrote:
  When I use use pdflatex for exporting LyX Documents it says
  "!LaTeX Error: Unknown graphics estension: eps".
  Any hint how to export eps figures with pdflatex? I

 pdflatex needs the pdf-format of the images.
 why don't you use the pdf-export instead of pdflatex?
-- ??? --
1. LyX-Menu: File Export PDF(pdflatex) is just what I'm using. Up 
to now i used ps2pdf for transforming my Documents and it's been ok, 
butwhithout Hyperrefs. -Which IMO will make a PDF-Document more 
usable-
 The Problem is that my Documents are about 100 to 150 Pages big, 
whith a lot of Graphics, Math and so on.
2. Next Question: How to insert a PDF Image into LyX? :-))

GERMAN:
1. Ich nutze bereits LyX-Menü: Datei Export  PDF(pdflatex). Bisher 
habe ich meine Dokumente mit ps2pdf umgewandelt und es war ok, aber 
ohne Hyperrefs. -die ein Dokument m.E. besser nutzbar machen-
 Problematisch ist dabei der Umfang von 100 bis 150 Seitzen meiner 
Dokumente mit vielen Grafiken, Mathematischem Formelsatz ...
2. Und dann gleich die nächste Frage: Wie füge ich in Lyx eine PDF 
Abbildung ein?
-- 
Thomas Templin
Postfach 2519
26365 Wilhelmshaven



Re: pdflatex don't work with images

2001-01-31 Thread Herbert Voss

Thomas Templin wrote:
 
 LyX 1.6.1, TETEX (SuSE 7.0)
 When I use use pdflatex for exporting LyX Documents it says "!LaTeX
 Error: Unknown graphics estension: eps".
 Any hint how to export eps figures with pdflatex? I

pdflatex needs the pdf-format of the images. 
why don't you use the pdf-export instead of pdflatex?

Herbert

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




pdflatex don't work with images

2001-01-31 Thread Thomas Templin

LyX 1.6.1, TETEX (SuSE 7.0)
When I use use pdflatex for exporting LyX Documents it says "!LaTeX 
Error: Unknown graphics estension: eps". 
Any hint how to export eps figures with pdflatex? I 

GERMAN:
Ich versuche vergeblich ein LyX Dokument mit EPS Grafiken ber 
Anzeigen PDF(pdflatex) zu exportieren, ohne Erfolg. Immer die 
gleiche Fehlermeldung "!LaTeX Error: Unknown graphics estension: eps"
Ein tip wre hilfreich.

cu,
Thomas (TT)
-- 
Thomas Templin
Postfach 2519
26365 Wilhelmshaven



Re: pdflatex don't work with images

2001-01-31 Thread Thomas Templin

Thursday,  February 1st 2001 07:11 Herbert Voss wrote:
  When I use use pdflatex for exporting LyX Documents it says
  "!LaTeX Error: Unknown graphics estension: eps".
  Any hint how to export eps figures with pdflatex? I

 pdflatex needs the pdf-format of the images.
 why don't you use the pdf-export instead of pdflatex?
-- ??? --
1. LyX-Menu: File Export PDF(pdflatex) is just what I'm using. Up 
to now i used ps2pdf for transforming my Documents and it's been ok, 
butwhithout Hyperrefs. -Which IMO will make a PDF-Document more 
usable-
 The Problem is that my Documents are about 100 to 150 Pages big, 
whith a lot of Graphics, Math and so on.
2. Next Question: How to insert a PDF Image into LyX? :-))

GERMAN:
1. Ich nutze bereits LyX-Menü: Datei Export  PDF(pdflatex). Bisher 
habe ich meine Dokumente mit ps2pdf umgewandelt und es war ok, aber 
ohne Hyperrefs. -die ein Dokument m.E. besser nutzbar machen-
 Problematisch ist dabei der Umfang von 100 bis 150 Seitzen meiner 
Dokumente mit vielen Grafiken, Mathematischem Formelsatz ...
2. Und dann gleich die nächste Frage: Wie füge ich in Lyx eine PDF 
Abbildung ein?
-- 
Thomas Templin
Postfach 2519
26365 Wilhelmshaven



Re: pdflatex don't work with images

2001-01-31 Thread Herbert Voss

Thomas Templin wrote:
 
 LyX 1.6.1, TETEX (SuSE 7.0)
 When I use use pdflatex for exporting LyX Documents it says "!LaTeX
 Error: Unknown graphics estension: eps".
 Any hint how to export eps figures with pdflatex? I

pdflatex needs the pdf-format of the images. 
why don't you use the pdf-export instead of pdflatex?

Herbert

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




pdflatex don't work with images

2001-01-31 Thread Thomas Templin

LyX 1.6.1, TETEX (SuSE 7.0)
When I use use pdflatex for exporting LyX Documents it says "!LaTeX 
Error: Unknown graphics estension: eps". 
Any hint how to export eps figures with pdflatex? I 

GERMAN:
Ich versuche vergeblich ein LyX Dokument mit EPS Grafiken ber 
Anzeigen PDF(pdflatex) zu exportieren, ohne Erfolg. Immer die 
gleiche Fehlermeldung "!LaTeX Error: Unknown graphics estension: eps"
Ein tip wre hilfreich.

cu,
Thomas (TT)
-- 
Thomas Templin
Postfach 2519
26365 Wilhelmshaven



Re: pdflatex don't work with images

2001-01-31 Thread Thomas Templin

Thursday,  February 1st 2001 07:11 Herbert Voss wrote:
> > When I use use pdflatex for exporting LyX Documents it says
> > "!LaTeX Error: Unknown graphics estension: eps".
> > Any hint how to export eps figures with pdflatex? I
>
> pdflatex needs the pdf-format of the images.
> why don't you use the pdf-export instead of pdflatex?
-- ??? --
1. LyX-Menu: File >Export >PDF(pdflatex) is just what I'm using. Up 
to now i used ps2pdf for transforming my Documents and it's been ok, 
butwhithout Hyperrefs. -Which IMO will make a PDF-Document more 
usable-
 The Problem is that my Documents are about 100 to 150 Pages big, 
whith a lot of Graphics, Math and so on.
2. Next Question: How to insert a PDF Image into LyX? :-))

GERMAN:
1. Ich nutze bereits LyX-Menü: Datei >Export > PDF(pdflatex). Bisher 
habe ich meine Dokumente mit ps2pdf umgewandelt und es war ok, aber 
ohne Hyperrefs. -die ein Dokument m.E. besser nutzbar machen-
 Problematisch ist dabei der Umfang von 100 bis 150 Seitzen meiner 
Dokumente mit vielen Grafiken, Mathematischem Formelsatz ...
2. Und dann gleich die nächste Frage: Wie füge ich in Lyx eine PDF 
Abbildung ein?
-- 
Thomas Templin
Postfach 2519
26365 Wilhelmshaven



Re: pdflatex don't work with images

2001-01-31 Thread Herbert Voss

Thomas Templin wrote:
> 
> LyX 1.6.1, TETEX (SuSE 7.0)
> When I use use pdflatex for exporting LyX Documents it says "!LaTeX
> Error: Unknown graphics estension: eps".
> Any hint how to export eps figures with pdflatex? I

pdflatex needs the pdf-format of the images. 
why don't you use the pdf-export instead of pdflatex?

Herbert

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




pdflatex don't work with images

2001-01-31 Thread Thomas Templin

LyX 1.6.1, TETEX (SuSE 7.0)
When I use use pdflatex for exporting LyX Documents it says "!LaTeX 
Error: Unknown graphics estension: eps". 
Any hint how to export eps figures with pdflatex? I 

GERMAN:
Ich versuche vergeblich ein LyX Dokument mit EPS Grafiken über 
>Anzeigen >PDF(pdflatex) zu exportieren, ohne Erfolg. Immer die 
gleiche Fehlermeldung "!LaTeX Error: Unknown graphics estension: eps"
Ein tip wäre hilfreich.

cu,
Thomas (TT)
-- 
Thomas Templin
Postfach 2519
26365 Wilhelmshaven