Tagged Questions
3
votes
3answers
52 views
REVTEX 4.1 and PeerX-Press LaTeX workflow
I am having trouble finding a practical workflow for REVTEX 4.1 documents to be uploaded using the AIP PeerX-press system.
The PeerX system only accepts images in EPS and TIFF format. My native ...
4
votes
1answer
143 views
Convert Title Page from LaTeX (or the resulting PDF) into a PNG thumbnail
I have written a book in LaTeX using TeXStudio. My title page, which is the book cover, is created using LaTeX source (including images in it), rather than drawn in a graphical program, such as ...
3
votes
1answer
354 views
Avoid eps to png conversion using mk4ht oolatex
I have a big set of eps images and I need to place them into an OpenOffice (odt) document. I wrote a simple script that creates a tex file containing these eps images and now I'm trying to convert it ...
9
votes
3answers
2k views
Problem with a very heavy EPS image - scatter plot too heavy as EPS
Using Stata, I produced a scatter plot of some variables. I saved the image as an EPS file. There are around a 1000 dots in the scatter plot - and this makes the EPS file to be 26MB. I need to use ...
1
vote
2answers
2k views
Converting eps to png - dimensions [closed]
When I convert EPS to PNG using this command
gs -dSAFER -dBATCH -dNOPAUSE -r600 -sDEVICE=pnggray -sOutputFile=%1.png "%1.eps"
I get PNG picture with large dimensions, although the bounding box ...
4
votes
2answers
258 views
Convert a picture or figure to EPS or PDF file
In my document I'm embedding figures using the following code:
\begin{figure}[!t]
\centering
\def\svgwidth{1.2\columnwidth}
\resizebox{\columnwidth}{!}{
\endlinechar=255\relax
...
1
vote
1answer
2k views
When converting PDF to EPS, how to prevent pdftops from rasterizing fonts and transparent regions?
Compiling the following code
% Circle.tex
\documentclass[cmyk]{minimal}
\usepackage{pstricks}
\pagestyle{empty}
\topmargin=-72.27pt
\oddsidemargin=-72.27pt
\topskip=0pt
\parindent=0pt
...
0
votes
1answer
1k views
ps2pdf -dEPSCrop input.eps cannot crop input with \pagecolor{<non-white>}
If I set \pagecolor{} to any color other than white, I will get a strange result.
rem batch.bat takes a file name without extension.
latex -interaction=nonstopmode %1
dvips -E %1 -o %1-temp.eps
...
0
votes
1answer
306 views
How to automate a job of changing tags in a bunch of EPS images and convert them to PDF
This post is a continuation to my earlier post here:
Creating standalone eps files and using batch files to automate the process
Xport gave good answers that work!
One goal of this whole process ...
1
vote
3answers
1k views
Creating standalone eps files and using batch files to automate the process
I have been looking at these posts
How to fix EPS with incorrect bounding box?
Cannot determine size of graphic in * (no BoundingBox)
How to convert PDF to EPS?
How to produce EPS instead of PS ...
2
votes
2answers
5k views
How to fix EPS with incorrect bounding box?
I want to get a standalone EPS graphic from DVI. This process can be done using the batch file as follows
latex %1
dvips -E %1 -o %1.eps
And the test file is as follows
\documentclass{minimal}
...
15
votes
2answers
18k views
How to convert PDF to EPS?
I can't find a tool to convert PDF to EPS, neither in MikTeX nor in TeXLive. Is there such a tool actually?
Update:
Based on Herbert's accepted answer, I simplify his batch as follows:
#!/bin/sh
...
0
votes
1answer
503 views
How to produce EPS instead of PS using latex.exe followed by dvips?
How to produce EPS instead of PS using latex.exe followed by dvips?
9
votes
2answers
9k views
Cannot determine size of graphic in * (no BoundingBox)
I use convert filename.gif filename.eps to produce EPS from images before include them into TeX document, and get error:
! LaTeX Error: Cannot determine size of graphic in filename.eps (no ...
14
votes
3answers
6k views
What are good ways to convert EPS to PDF?
I'd like to try to use pdfLaTeX to generate PDFs but my images are all in EPS. I would also like for the images to remain scalable.
I have tried using ImageMagik's convert:
convert file.eps ...