Tikzgraphic 顯示在文字後面

Tikzgraphic 顯示在文字後面

我嘗試在 Latex 中顯示 Tikzpicture:

\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}

但 Tikzpicture 不佔用空間並顯示在文字後面: 。

如果我用普通圖形替換 tikzpicture,一切正常。我怎樣才能解決這個問題?

相關內容