将 \tikzpicture 居中的正确方法是什么?

将 \tikzpicture 居中的正确方法是什么?

可能重复:
我应该对图形和表格使用 center 还是 centering ?

使 a 居中的正确方法是什么\tikzpicture?默认情况下,它似乎与左边距对齐。

答案1

\begin{figure}[!h]
\centering
\tikz
\end{figure}

答案2

当图片不需要放在图中(即不需要标题时)时,我使用

\begin{center}
 \begin{tikzpicture}
  ....
 \end{tikzpicture}
\end{center}

答案3

\hbox to \hsize{\hfil{Anything}\hfil}

相关内容