I'm doing a slide presentation with LaTeX, and some slides show only graphics. I created those graphics using R. But in those slides, the graphic size is too big and a part of the graphic does not appear in the slide, like it's been cropped. Is there any command in LaTeX that can make the graphic smaller in the slide?
Tell me more
×
TeX - LaTeX Stack Exchange is a question and answer site for
users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.
|
The
|
|||
|
|
\includegraphics[width=0.5\textwidth]{mygraph}will scale the graph so that it is half of the current text width (and scale the height by the some amount). check the documentation for thegraphicxpackage for this and other options available – prettygully Nov 21 '11 at 2:38