summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-grmaxwidth.html
blob: 06edd868751292194e5ca006612b442aef258f10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<head>
<title>UK TeX FAQ -- question label grmaxwidth</title>
</head><body>
<h3>Limit the width of imported graphics</h3>
<p/>Suppose you have graphics which may or may not be able to fit within
the width of the page; if they will fit, you want to set them at their
natural size, but otherwise you want to scale the whole picture so
that it fits within the page width.
<p/>You do this by delving into the innards of the graphics package (which
of course needs a little LaTeX internals programming):
<blockquote>
<pre>
\makeatletter
\def\maxwidth{%
  \ifdim\Gin@nat@width&gt;\linewidth
    \linewidth
  \else
    \Gin@nat@width
  \fi
}
\makeatother
</pre>
</blockquote><p>
This defines a &ldquo;variable&rdquo; width which has the properties you want.
Replace <code>\</code><code>linewidth</code> if you have a different constraint on the width
of the graphic.
<p/>Use the command as follows:
<blockquote>
<pre>
\includegraphics[width=\maxwidth]{figure}
</pre>
</blockquote><p>
<p/><p>This question on the Web: <a href="http://www.tex.ac.uk/cgi-bin/texfaq2html?label=grmaxwidth">http://www.tex.ac.uk/cgi-bin/texfaq2html?label=grmaxwidth</a>
</body>