%12/13/93 \documentclass[12pt]{article} \pagestyle{empty} %\input /u/s1/ma/rbrown/tex/macros/latex_course.tex \usepackage{graphics} \begin{document} \begin{center} CSLIS technical report, 97-231-891: Including postscript. \end{center} Here is an example of an included graphics file. \includegraphics{logo.eps} To include a file, you must \begin{enumerate} \item Put the command \begin{verbatim}\usepackage{graphics} \end{verbatim} in the preamble. \item At the point where the graphics are to appear, put the command \begin{verbatim} \includegraphics{[filename]} \end{verbatim} \end{enumerate} See the latex2e manual p. 224 for additional information, including options such as resizing a picture. Some examples appear below: To rotate a picture through a counterclockwise angle, use the command \begin{verbatim}\rotatebox{angle}{picture}\end{verbatim} For example, the command \begin{verbatim} \rotatebox{90}{\includegraphics{logo.eps}} \end{verbatim} produces: \rotatebox{90}{\includegraphics{logo.eps}} To resize a picture use either the command \begin{verbatim}\resizebox{width}{height}{picture}\end{verbatim} or the command \begin{verbatim}\scalebox{horizontal_scale}[vertical_scale]{picture}\end{verbatim}. A box may be reflected with the command \begin{verbatim}\reflectbox{picture} \end{verbatim}. To shift a picture, I think you use optional arguments to the \begin{verbatim} \includegraphics \end{verbatim} command, but I do not understand how these work. \end{document}