Why do the figures appear BEFORE instead of AFTER the section title ???
\documentclass[pdftex,12pt,a4paper,english,dutch,leqno]{article}
\usepackage[top=1cm,right=1cm,bottom=1cm,left=1.5cm,noheadfoot]{geometry}
\usepackage{babel}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{tikz}
\usetikzlibrary{arrows,decorations.markings,patterns,calc}
\usepackage[heightadjust=all]{floatrow}
\usepackage[labelformat=empty]{caption}
\begin{document}
\section*{Why is this section title BELOW the figures ???!!!}
\begin{figure}
\begin{floatrow}
\ffigbox[\FBwidth]
{\begin{tikzpicture}[>=stealth']
\draw[line width=1mm,rotate=45] (0,0) rectangle (2,2);
\end{tikzpicture}}
{\caption{\footnotesize\bf Figure 1.}
\label{fig:_____}}
\hspace{0cm}
\ffigbox[\FBwidth]
{\begin{tikzpicture}[>=stealth']
\draw[line width=1mm] (0,0) circle (3);
\end{tikzpicture}}
{\caption{\footnotesize\bf Figure 2.}
\label{fig:_____}}
\end{floatrow}
\end{figure}
The figures should appear between the section title and THIS line !!!
\end{document}
figureis a float... so it moves around, either on the current page, or to following pages. – Werner Oct 02 '12 at 21:48figureandtablein LaTeX?; Keeping tables/figures close to where they are mentioned – Werner Oct 02 '12 at 22:02