我正在尝试使用 使使用 pgfplots 制作的图表居中\centering
。如果我将 放在\centering
一个组中以限制其范围,则图表不会居中。如果我不限制 的范围\centering
,则所有内容都会居中。
\documentclass{minimal}
\usepackage{pgfplots}
\begin{document}
This text should not be centered, but the graph should be.
% \begingroup
\centering
\begin{tikzpicture}
\begin{axis}
\addplot coordinates { (0, 0) (1, 1)};
\end{axis}
\end{tikzpicture}
% \endgroup
This text should not be centered.
\end{document}
答案1
这里没有什么特别的,tikzpicture
你会看到同样的东西
{\centering X}
\centering
通过设置段落参数来工作,因此如果你在段落结束前关闭组,则什么也不会发生。你可以使用
{\centering
X
}
将X
(或tikzpicture
)居中。或者更自然地使用
\begin{center}
X
\end{center}
这也增加了一些垂直空间。