I downloaded and installed MikTeX on my machine (Windows 7), then when I run the command:
latex ex.tex
the outputs were:
- ex.aux
- ex.dvi
- ex.log
So my question is, what option could I use to produce ex.pdf? Any suggestion?
I downloaded and installed MikTeX on my machine (Windows 7), then when I run the command:
latex ex.tex
the outputs were:
So my question is, what option could I use to produce ex.pdf? Any suggestion?
Run pdflatex ex.tex to produce a pdf file from the tex file directly. Alternatively, after obtaining the dvi file from latex ex.tex, run dvips -P pdf ex.dvi followed by ps2pdf ex.ps to produce a ps file and then a pdf file, or dvipdfm ex.dvi to produce a pdf file.
It is much easier to do these using a LaTeX editor. You may also want to consider using automated processes provided by say latexmk which runs various executables the required number of times (sometimes one run is not sufficient) to give the right final output. Also note that some packages cannot work with some methods. For example, pstricks does not work with pdflatex or dvipdfm.
texify is preferred to latexmk in MiKTeX. And always use dvipdfmx instead of dvipdfm if possible. And there are xelatex and lualatex to produce PDF output with better Unicode support and many other features.
– Leo Liu
Jun 23 '11 at 04:13
texify better for MiKTeX than latexmk? Perhaps you can share your experiences in texify or latexmk?
– doncherry
Aug 20 '12 at 22:44
pdflatexonly or usinglatexfollowed bydvipsfollowed byps2pdf. The formerpdflatexallows you to import PDF, JPG, and PNG images. The latterlatex-dvips-ps2pdfallows you to import EPS images and PSTricks code. It is worth using an editor to write your input file .tex. There are many editors for Windows, such as TeXnicCenter, TeXStudio (formerly named as TeXMakerX), etc. – Display Name Jun 22 '11 at 23:12