Created
January 23, 2015 07:44
-
-
Save pjendrusik/a116a95b0844f1b727ba to your computer and use it in GitHub Desktop.
tex handling
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Compiling TeX: | |
tex test1.tex : converts a TeX file to DVI (probably you don't need that, if you mean LaTeX) | |
pdftex test1.tex : converts a TeX file to PDF (probably you don't need that either) | |
latex test1.tex : converts a LaTeX file to DVI | |
pdflatex test1.tex : converts a LaTeX file to PDF | |
Converting: | |
dvips test1.dvi : converts a DVI file to PostScript | |
ps2pdf test1.ps : converts a PostScript file to PDF | |
dvipdfmx xtest1.dvi : converts a DVI file to PDF (similar: dvipdf, dvipdfm) | |
Viewing: | |
xdvi test1.dvi, xpdf test1.pdf, gv test1.ps, ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment