LyX ⇒ Export to plain LaTeX gives pixelated EPS graphics
Export to plain LaTeX gives pixelated EPS graphics
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
-
- Site Moderator
- Posts: 542
- Joined: Sat Sep 01, 2012 6:38 am
Export to plain LaTeX gives pixelated EPS graphics
I think it does use pdftops. Go to Tools > Preferences > File Handling > Converters. Then go to PDF (ps2pdf) -> EPS and you will seeEcks wrote:I'm using LyX to create LaTeX code for a journal submission and my graphics are in .PDF format natively. When I command LyX to export to LaTeX (plain), it converts my .pdf graphics into .eps as it should, however the .eps files are of very pixelated. I've done enough digging at this point to figure out that LyX uses Imagemagick to convert to .eps, and as it turns out, Imagemagick rasterizes anything that comes through it. That explains the pixelation, so is there a way to command LyX to use a converter other than Imagemagick to create the .eps files? I'd really like to have LyX call on pdftops.exe to run the conversion, but have no idea how to get that to happen during export to plain LaTeX.
Code: Select all
pdftops -eps -f 1 -l 1 $$i $$o
Let us know what you change that to and if you are happy with the results.
Scott
Re: Export to plain LaTeX gives pixelated EPS graphics
-
- Site Moderator
- Posts: 542
- Joined: Sat Sep 01, 2012 6:38 am
Re: Export to plain LaTeX gives pixelated EPS graphics
Scott