Tikzgraphic wird hinter Text angezeigt

Tikzgraphic wird hinter Text angezeigt

Ich habe versucht, ein Tikz-Bild in Latex anzuzeigen:

\documentclass{article}
\usepackage{lipsum}
\usepackage{tikz}
\title{My Figure Problem}

\begin{document} 
\maketitle
\section{Placeholder Text 1}
\lipsum[1]
\begin{figure}[h!]\centering
\begin{tikzpicture}[transform canvas = {scale=4.0}]
\draw (0,0) ellipse (10pt and 20pt);
\end{tikzpicture}
\caption{Picture of a Elipse.}
\end{figure}
text continues here.
\section{Placeholder Text 2}  
\lipsum[1]
\end{document}

Das Tikzbild nimmt jedoch keinen Platz ein und wird hinter dem Text angezeigt: .

Wenn ich das Tikzbild durch eine normale Grafik ersetze, funktioniert alles einwandfrei. Wie kann ich das beheben?

verwandte Informationen