LaTeX-Paket graphicx
- ist eine Erweiterung des graphics-Pakets und basiert darauf
- the driver is hard-coded and defaults to dvips, daher
\usepackage[pdftex]{graphicx}
- wird benötigt für includegraphics
-
\usepackage{graphicx} % auch zum Drehen von Text
-
\usepackage[pdftex]{graphicx}
- kontrollieren ob das \usepackage[dvips]{graphicx} auch auskommentiert ist
- früher verwendete man z. B. epsf.sty
- It turns out that graphicx handles both file formats with aplomb. All you have to do is remember to omit the file extension when inputting the figure:
\includegraphics[width=36ex]{foo}
and foo.pdf will be used with pdfLaTeX, while foo.eps will be used with LaTeX/dvips/GhostScript.
|