Tikz 画像をフルページにならないようにするにはどうすればよいですか?

Tikz 画像をフルページにならないようにするにはどうすればよいですか?

画像がどれだけ小さくても、新しいページの中央に表示されます。テキストの「上下」に配置するにはどうすればよいでしょうか?

\begin{figure}
\centering
\begin{tikzpicture}[node distance=2cm]
\node (start0) [startstop] {Start};
\node (start) [process, below of=start0] {Start};
\node (dec1) [decision, below of=start, yshift=-2cm] {Evaluation completed?};
\node (yes) [startstop, below of=dec1, yshift=-2cm] {Evaluation results};
\node (no) [process, right of=dec1, xshift=3cm, yshift=3cm] {Continue};
\draw [arrow] (start0) -- (start);
\draw [arrow] (start) -- (dec1);
\draw [arrow] (dec1) -- node[anchor=east] {yes} (yes);
\draw [arrow] (dec1) -| node[anchor=west] {no} (no);
\draw [arrow] (no) -| (dec1);
\end{tikzpicture}
\caption {Evaluation cycle of a long computation}
\label{fig:evaluationCycle}
\end{figure}

関連情報