How do you put one pictures below the other? I tried something like that
Code: Select all
\begin{figure}[!t]
\begin{center}
\fbox{\includegraphics[width=121mm]{pic1.jpg}}
\caption*{\footnotesize\centering{1. blabla.}}
\end{center}
\end{figure}
\begin{figure}[!b]
\begin{center}
\fbox{\includegraphics[width=121mm]{pic2.jpg}}
\caption*{\footnotesize{2. blabla}}
\end{center}
\end{figure}
but it didn't work properly. First picture is in a place that I want it to be (at the top of the page), but the second appears at the bottom but on the next page.
So, I've invented some primitive method like that:
Code: Select all
\begin{figure}[!t]
\begin{center}
\fbox{\includegraphics[width=121mm]{pic1.jpg}}\\
\vspace{-10pt}
\caption*{\footnotesize\centering{1. blabla.}}\\
\vspace{3pt}
\fbox{\includegraphics[width=121mm]{pic2.jpg}}\\
\vspace{-10pt}
\caption*{\footnotesize{2. blabla}}
\end{center}
\end{figure}
Is there any way to resolve this problem?
Thanks for any help.
krz