vote up 1 vote down star

For sizing figures in LaTeX it's helpful to know how wide the text is so that figures can be sized to match without rescaling. LaTeX provides \textwidth for reference by other commands, e.g.
\includegraphics[width=\textwidth]{figure}
but including \textwidth "raw" in the document produces errors.

Is there a way to determine what this value is?

flag

57% accept rate

2 Answers

vote up 3 vote down

From http://www.latex-community.org/forum/viewtopic.php?f=5&t=2712

Using \the\textwidth will allow you to see the value LaTeX is using. However, the default unit of measurement is probably points, not a likely option for your graphics software.

Fortunately, the conversion function is available in the standard layouts package: \usepackage{layouts}
...
textwidth in cm: \printinunitsof{cm}\prntlen{\textwidth}
will print the value in cm. All the usual LaTeX units of measurement are also available if cm aren't what you want.

link|flag
vote up 3 vote down

The printlen package:

\documentclass{article}
\usepackage{printlen}
\begin{document}
\printlength\textwidth
\end{document}

produces "345.0pt". It can print in units other than pt, too.

link|flag
printlen isn't included by default in teTeX which makes this solution a bit harder, but I'm impressed by the quick response! – blahdiblah Apr 2 at 1:27
Just use \the, it's built into TeX itself. – jleedev Apr 2 at 1:28
teTeX is unsupported for a couple of years now. You should be using TeXLive instead. – Will Robertson Apr 2 at 2:34
Thanks for the heads up about teTeX. Once TeXLive makes it into fink's repository I'll gladly move to it. – blahdiblah Apr 3 at 23:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.