Merging PostScript and Text
Diese Seite existiert momentan nur auf Englisch.
To include any kind of pictures into LaTeX documents the package graphicx must be specified as follows:
\usepackage{graphicx}
There is a very useful documentation about including pictures from Keith Reckdahl.
The command:
\includegraphics[options]{file}
Some possible options:
height | The height of the graphics (e.g. height=5cm) |
width | The width of the graphic (e.g. width=2in) |
scale | Scale factor for the graphic (e.g. scale=2) |
bb | Specifies the Bounding Box parameters (e.g. bb=0 0 50 100) |
trim | You can specify the amount to remove from the left, bottom, right and top side (e.g. trim=1 2 3 4) |
draft | The graphic's Bounding Box and filename are displayed in place of the real graphic. |
clip |
There are some more options available (see the documentation)
In the following example the picture was included at its natural size:\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin{figure}
\includegraphics[height=20mm]{gsilogo3.ps}
\caption{Graphics with epsfig}
\end{figure}
\end{document}
result
Haben Sie noch weiterführende Fragen, so senden Sie bitte eine Email an latex-service.