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?