
내 이미지가 아무리 작더라도 새 페이지의 중앙에 렌더링됩니다. 텍스트 "위 및 아래"로 만드는 방법은 무엇입니까?
\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}