I need to submit the final version of my paper to a conference but they request a .zip file that including .ps and .dvi file of my .tex document. Since my whole project is on Overleaf, I want to know how can I accomplish it?
Here, what I have done so far:
- First I learned that I have to change compiler from pdflatex to latex... Done!
Then when I compile, it returned errors that request natural size of figures. And I used the answer given here:
Now it doesn't yell out me, compiles with no error, however still can't see the figures in the output. I don't even know if it is normal or not. Also, can't download a .div file, still gives .pdf file to me.
About .ps file, I haven't there yet, didn't try. But if you know what to do, please inform me. Thanks in advance.
\includegraphics[width=0.77\textwidth,natwidth=580,natheight=887]{per10.pdf}Now you tell me convert them to .eps ? :/ – stack me Sep 04 '19 at 08:42Config Error: No display font for 'Symbol'. Also, I converted that .ps file to .pdf file with an online tool, it returns a pdf file with only the first page of my paper. – stack me Sep 04 '19 at 09:23dvips -Ppdf filename.dvithroughMS-DOSprompt, and you will get a.psfile – MadyYuvi Sep 04 '19 at 09:57MikTeXsetup, if you go forLaTeX->dvips->PS2PDF, thenMikTeXis recommendable... – MadyYuvi Sep 04 '19 at 11:12latexmkrc(without extension), and add this line in it:END { system ('dvips -Ppdf output.dvi'); }then recompile. ($pdf_mode=2doesn't work) You can also use https://cloudconvert.com/ to convert dvi -> ps – imnothere Sep 04 '19 at 12:37