I want to convert a pdf file to eps using windows file has mathematical symbols and I want to make then unaltered.
Getting help from here, I have made a bat file and placed the bat file (pdf2eps) in say D drive
rem pdf2eps <page number> <pdf file without ext>
echo off
pdfcrop "%2.pdf" "%2-temp.pdf"
pdftops -f %1 -l %1 -eps "%2-temp.pdf" "%2.eps"
del "%2-temp.pdf"
What will be the next steps. Please write the full steps to get an eps from a pdf.
Edit: Changing directory to the path of pdf2eps.bat in cmd.exe, I have tried with pdf2eps 1 oldfile (without pdf extension). Also tried with pdftoeps -eps <PDF file with .pdf> But not get any result by both process. What to do?
:-)What is the problem with the solutions described there? – campa Jun 18 '20 at 15:51pdf2eps 1 oldfileto convert page 1 ofoldfile.pdftooldfile.eps. But why do you want an eps file? – David Carlisle Jun 18 '20 at 16:11pdftoeps yourfilenameif the command isn't in your path then you will need to give the full path to the command. But you should be in the directory with the pdf file – David Carlisle Jun 18 '20 at 16:31