1

I use the BMC LaTeX templates for my own documents, but it always throws the warning:

 Overfull \hbox (1.0pt too wide) has occurred while \output is active

And I just don't know where it comes from... Could anyone have a look and see how to remove this warning? Thanks!

You can get the template from: http://www.biomedcentral.com/authors/tex (bmc_article)

I am not asking what "overfull \hbox" means, just how to track that warning in this particular template, and solve it!

DaniCee
  • 2,217

1 Answers1

1

The setting for \leftarea@width is off by one.

Workaround: after the \documentclass line, add

\makeatletter
\setattribute{leftarea}{width}{123\p@}
\makeatother

A more general workaround that doesn't rely on knowing the value is

\makeatletter
\begingroup
\def\get#1\p@{#1}
\count@=\expandafter\get\leftarea@width
\advance\count@\@ne
\edef\x{\endgroup\def\noexpand\leftarea@width{\the\count@\p@}}\x
\makeatother
egreg
  • 1,121,712