I would like to change my figure's width to a precentage of my \textwidth:
\textwidth /2 would scale to 50% of the \textwidth.
What is the proper syntax (if any) to do this ?
I would like to change my figure's width to a precentage of my \textwidth:
\textwidth /2 would scale to 50% of the \textwidth.
What is the proper syntax (if any) to do this ?
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\includegraphics[width=0.5\textwidth]{file}
\end{document}
In some cases \linewidth instead of \textwidth may be the better option. For example will it be the same as \textwidth in a single column document, but the same as \columnwidth in a two column document. \linewidth may also change in list environments, becoming smaller in nested lists.
As commented by Christian Lindig, see Difference between \textwidth, \linewidth and \hsize for a discussion of this.
\textwidth,\linewidthand\hsize. For these reasons you should use\linewidthbecause it works inside columns and minipages. – Christian Lindig Dec 10 '11 at 12:00\parindenthorizontal shift. I wouldn't change your MWE though, since the OP's usage may not require it (for example, within afigureenvironment). – Werner Dec 10 '11 at 15:34