4
In a Latex report I’m writing, I’m trying to insert a large figure at the beginning of the chapter. It’s a page-sized flowchart:
\begin{figure}[!htb]
\centering
\includegraphics[width=\textwidth]{visio/fluxograma} % fluxograma é um PDF
\caption{Fluxograma descrevendo a metodologia.}
\label{fig:methodology}
\end{figure}
What is happening is that, because it is the size of a page, Latex is postponing the insertion of the figure to the end of the chapter, after the text. As the flowchart is only inserted at the end, it hinders the insertion of the other figures that are in the middle of the chapter. Hence, the figures are all at the end of the chapter.
Question
How do I insert the flowchart in the correct position?
I tried to put the attributes [!htb]
in the flowchart, but it didn’t help. By changing the size to 80% I could, but I wanted to keep it with the page size.
Just for the record, there’s another Stack Exchange group Q&A specific to Tex/Latex questions (in English): http://tex.stackexchange.com/ Not that I think your question doesn’t fit here, but just so you know it exists (because it can help you in the future with other issues). :)
– Luiz Vieira