I'm having some trouble to place a big figure on my document (class article).
The picture is bigger than one page. I've something like this :
\subsubsection{TITLE 1}
11111111111111111111111111111111111111111...
\subsubsection{TITLE 2}
22222222222222222222222222222222222222222...
\subsubsection{TITLE 3}
MYFIGURE
\subsubsection{TITLE 4}
44444444444444444444444444444444444444444...
The result I'm trying to have is :
Page 1:
----------------------------------------------------
TITLE 1
111111111111111111111111111111111111111111
TITLE 2
222222222222222222222222222222222222222222
----------------------------------------------------
Page 2:
----------------------------------------------------
TITLE 3
MYFIGURE
-----------------------------------------------------
Page 3:
----------------------------------------------------
TITLE 4
444444444444444444444444444444444444444444444444444
----------------------------------------------------
So the hard thing for me is (don't know if it's possible) :
- to push the subsubsection of the figure on a new page (I'm doing it with \clearpage)
- the page have to contain only : subsubsection, figure and caption
- on the following page, we got the rest of text
I'm trying with something like this :
Code: Select all
\clearpage
\subsubsection{TITLE 3}
\begin{figure}[h]
\centering
\includegraphics [height=\textheight]{images/image.png}
\caption{My caption}
\label{my_label}
\end{figure}
But :
- the figure is not on the same page, it's on another page
- the figure's caption is in the footer
Anyone to help me plzzzzzzzzzz ?
Thanks for you help !!!!
Edit : by the way, if I use only \includegraphics [height=\textheight]{images/image.png}, it works like I want but I don't get the figure in the figure's table and I can't put a caption.