In a Latex report I'm writing, I'm trying to insert a large picture at the beginning of the chapter. It's a one-page-size 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, the 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 disrupts 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 [!htb]
attributes in the flowchart, but it did not work. Modifying the size to 80% I did, but I wanted to keep it with page size.