Ah, I should have seen that... sometimes you don't see the tree for the woods (to quote one of my favourite moviesStefan_K wrote:That's because of the spaces in the file name.

Ah, I should have seen that... sometimes you don't see the tree for the woods (to quote one of my favourite moviesStefan_K wrote:That's because of the spaces in the file name.
if you would post a compilable example together with two such pictures, we could test it easily. Once it's verified, it can probably be fixed.Stefan_K wrote:I'm sure, the problem can be solved, if the information would be sufficient. For example, if you would post a small example with two such images as attachments which shows the effect when compiled. Having a test case leads usually to a solution.
jpg
is not the best format for inclusion to the document. Better would be to have a vector graphic format like pdf
.Code: Select all
\documentclass{buthesis}
\usepackage{graphicx}
\begin{document}
\begin{figure}[htp]
\centering
\fbox{\includegraphics[width=.7\linewidth]{./image1.jpg}}
\caption{Image 1}
\end{figure}
\begin{figure}[htp]
\centering
\fbox{\includegraphics[width=.7\linewidth]{./image2.jpg}}
\caption{Image 2}
\end{figure}
\end{document}
In this case you can simply post your code. I'm confident we'll figure out where the warnings and bad boxes are from and how you can avoid them. Important would be to see some code and (even if I begin to sound like a parrot) the real pictures (instead of pictures of the pictures).rainz wrote:Actually there are no errors just warnings and bad boxes.