Graphics, Figures & Tables ⇒ Figures appearing above the section title.
Figures appearing above the section title.
I wanted to add some images in the end of my text, under the section "Anhang". The problem is that the first images appear above de section title. I tried to make them smaller but it did not change anything. Do you guys have any solution for me ?
Thanks a lot,
fato
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Re: Figures appearing above the section title.
[...]
\bibitem{sunier} Sunier Jean, \textit{La fabrication de la bi\`ere}, \textit{Les principes de base et les connaissances pratiques pour \'elaborer de la bonne bi\`ere}, Qu\'ebec, Alliage Editeur, 2007
\bibitem{wikipedia}Wikipedia, \textit{The Free Encyclopedia}, 25.09.09, http://commons.wikimedia.org/wiki/File:Hopfen1.jpg
\end{thebibliography}
\end{multicols}
\newpage
\section{Anhang}
\begin{figure}
\includegraphics[scale = 0.5]{malz.eps}
\caption{Brau-, Karamell- und R\"ostmalz\cite{brouwland}}
\end{figure}
\begin{figure}
\includegraphics[scale = 0.35]{Humulus_haut.eps}
\caption{Hopfen ist eine Kletterpflanze. \cite{bonadea}}
\end{figure}
[...]
Figures appearing above the section title.
use !ht as the placement specifier for your figures:
Code: Select all
\documentclass{article}
\begin{document}
\section{Test section}
\begin{figure}[!ht]
\centering
\rule{4cm}{2cm}
\caption{test figure one.}
\label{fig:test1}
\end{figure}
\begin{figure}[!ht]
\centering
\rule{4cm}{2cm}
\caption{test figure two.}
\label{fig:test2}
\end{figure}
\end{document}
Re: Figures appearing above the section title.
Thank you so much!
Fato