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, 
> but    whithout 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.

Reply via email to