I have a collection of images of different sizes. I would like to set a limit on their width, such that if the image is wider than this limit it will be scaled down, but if it is smaller then the image is inserted at its native size. Right now the only way I know how to manipulate the image width is with:
\includegraphics[width=SOMEWIDTH]{path/to/my/image}
But this sets the width regardless of the current image size.
Two questions:
- is it possible to limit the image width as described for a single image?
- is it possible to configure a global setting so that a limit is applied to all images, without need to use
[width=SOMEWIDTH]on individuals?
