Not sure this is a programming question, but we use LaTeX for all our API documentation and user documentation, so I hope it will go through.
Can someone please explain what are the relative merits of using pdflatex
as opposed to the "classic" technique of
latex foo
dvips -Ppdf foo
ps2pdf foo.ps
From time to time I run into people who have difficulty because things don't work in pdflatex
, and I know that using pdflatex
gives up two things I have grown to value:
- Can't use the very speedy
xdvi
viewer - Can't use the PStricks package
I should add that I typically get PDF with hyperlinks by using something on the order of
\usepackage[ps2pdf,colorlinks=true]{hyperref}
so it's not necessary to use pdflatex
to get good PDF.
So
- What are the advantages of
pdflatex
that I don't know about? - What are the disadvantages of the old tools that I've overlooked?