Re: pdflatex works fine but latex just won't
Thomas Esser <[email protected]> Wed, 26 Oct 2005 19:32:26 +0200
| Newsgroups | gmane.comp.tex.tetex.general |
|---|---|
| Message-ID | <[email protected]> |
> \else\ifnum\pdfoutput > 0\PDFtrue
^ add a space here.
But, you should better use
\usepackage{ifpdf}
...
\ifpdf
...
\fi
> \usepackage[pdftex]{graphicx}
...
> \usepackage[dvips]{graphicx}
teTeX's graphics.cfg is smart. You can just
\usepackage{graphicx}
Thomas