Skip to content

Instantly share code, notes, and snippets.

@pjendrusik
Created January 23, 2015 07:44
Show Gist options
  • Save pjendrusik/a116a95b0844f1b727ba to your computer and use it in GitHub Desktop.
Save pjendrusik/a116a95b0844f1b727ba to your computer and use it in GitHub Desktop.
tex handling
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