selinap.com

To leave furtively and stealthily.

Home » LaTeX

Compiling LaTeX on Windows: An alternative method

April 15th, 2008

The usual method to compile latex is by using “latex” command, and if the latex file contains bibliography, it will be a very tedious and repetitive job.

To produce a dvi file:

1
2
3
4
latex yourfile.tex
bibtex yourfile.tex
latex yourfile.tex
latex yourfile.tex

To produce a pdf file:

1
2
3
4
pdflatex yourfile.tex
bibtex yourfile.tex
pdflatex yourfile.tex
pdflatex yourfile.tex

However, for the windows user, with miktex, there is an alternative that could simplify all those tasks - the texify.

To produce a dvi file”

1
texify yourfile.tex

To produce a dvi file and clean all the auxilary files:

1
texify -c yourfile.tex

To produce a pdf file (to clean all the auxilary files, just add -c as above):

1
texify -p yourfile.tex

To produce a dvi file and run the default viewer (add -p for pdf)

1
texify yourfile.tex --run-viewer

Related Articles:

Popular Articles:

Spread/Promote this article.

Digg | Del.icio.us | Stumble | Y! MyWeb | Y! Buzz | Fave It! | Reddit

Subscribe for free.

 Subscribe to Selinap.com feed right now!

 Get Updates by Email

Tags: , , , , , , ,

Leave a Reply

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="">


© Copyright 2008 - 2009 selinap.com
Entries (RSS) and Comments (RSS).