General ⇒ Can't output to DVI after upgrade (always PDF)
Can't output to DVI after upgrade (always PDF)
I recently upgrade to 1 Beta 7.01 and can no longer produce a DVI output. Even if I select the DVI profile, the application always calls the pdfeTex and generates a PDF file instead. Any auggestion?
thanks
Pascal
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Re: Can't output to DVI after upgrade (always PDF)
Re: Can't output to DVI after upgrade (always PDF)
Run LaTex in this profile: checked
Stop compilation if LaTex error occures: unchecked (also just noticed a typo in the dialog: should read Stop compilation "occurs")
Path to LaTex compiler: C:\Program Files\MiKTeX 2.5\miktex\bin\latex.exe
Command line argument: --src -interaction=nonstopmode "%Wm"
When I run, I get:
==== output profile Latex => DVI ====
This is pdfeTeX, version 3.141592-1.30.6-2-2 (MiKTex 2.5 Beta 7)
etc....
output written on myfilename.pdf
so this ends up producing a PDF file....
Are the command line parameters wrong?
thanks
*P
Can't output to DVI after upgrade (always PDF)
the new release adds the following code when creating new document which leads to the PDF output.... just need to comment out....
Code: Select all
\newif\ifpdf
\ifx\pdfoutput\undefined
\pdffalse %%normal LaTeX is executed
\else
\pdfoutput=1
\pdftrue %%pdfLaTeX is executed
\fi