My LaTeX puts each picture in my document to an empty page, no matter what is the size of the picture such that only the caption is in the page where is the picture.
Example of code
\begin{table}[h!]
\begin{landscape}
\begin{figure}
\caption{ERD}
\includegraphics[width=25cm]{/Users/cs/hy/usecases.png}
\end{figure}
\end{landscape}
--- text ---
\end{table}
The table
commands make the content disppear completely although I use graphicx
package.
The code requires two pages without the table command.
I would like to have the small picture and the text to be in the same A4.
How can you a picture and some text in the same A4?