File: FAQ-grmaxwidth.html

package info (click to toggle)
texlive-doc 2007.dfsg.2-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 129,872 kB
  • ctags: 3,330
  • sloc: xml: 23,147; perl: 8,370; makefile: 843; sh: 352; lisp: 276; java: 159; python: 97; sed: 4
file content (34 lines) | stat: -rw-r--r-- 1,144 bytes parent folder | download
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>