1

I'm trying to format a picture so that it fills the text width however it always errors and fills the whole page.

\includegraphics[width=\textwidth]{circle}

is the line I'm currently using also this is probably relevent

\documentclass[twocolumn,reprint,nofootinbib]{revtex4-1}

\usepackage{graphicx}

Also this is the error I'm getting:

Overfull \hbox (264.0pt too wide) in paragraph
lockstep
  • 250,273

1 Answers1

2

You want to fill the column, not the page; so the correct parameter to use is \columnwidth

\includegraphics[width=\columnwidth]{circle}

See https://tex.stackexchange.com/a/16956/4427 for more information.

egreg
  • 1,121,712