[Tex/LaTex] Scale figure to a percentage of \textwidth

graphicsmarginsscaling

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 ?

Best Answer

 \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.