I'm getting the error:
Overfull \hbox (14.34999pt too wide) in paragraph at lines 374--375
[][] |
when including graphics files. The files are in EPS format. Below is an example:
\begin{figure}
\includegraphics{mov.eps}
\caption{Recall vs. Diversity}
\label{fig:movdiv}
\end{figure}
When I look at the PDF output the figures are a little bit out of the margin.
However, while generating the EPS graphics files I don't give any size options. So I don't understand why I'm getting this error. Doesn't LaTeX adjust the size of the EPS files?
\linewidthis equal to\textwidthin normal text and insidefigure, but will be narrower inside environments likequotewhere the lines are indeed shorter, while\textwidthis the official width of the text, i.e. the page width minus both margins. In most cases both work, but\linewidthwould be saver, however\textwidthis more commonly used it seems. See also Difference between \textwidth, \linewidth and \hsize. – Martin Scharrer Jan 27 '13 at 17:50\includegraphics{myimage.png}to\includegraphics[width=\linewidth]{myimage.png}– JoseOrtiz3 Jun 10 '19 at 07:25