我正在使用 beamer,其中包括许多 tikzpictures。如果我的图片不是太大,它就会居中,但如果图片太大,那么它就不再起作用了。
以下框架
\begin{frame}
\frametitle{This is a sample}
\begin{center}
\begin{tikzpicture}
\begin{axis}[hide x axis,hide y axis,x=2.5cm,y=2.5cm]
\addplot[patch,patch type=rectangle,color=blue,faceted color=white]
coordinates {(-1.3,-1.1) (-1.3,1.1) (1.3,1.1) (1.3,-1.1)};
\end{axis}
\end{tikzpicture}
\end{center}
\end{frame}
产量
但
\begin{frame}
\frametitle{This is a sample}
\begin{center}
\begin{tikzpicture}
\begin{axis}[hide x axis,hide y axis,x=2.5cm,y=2.5cm]
\addplot[patch,patch type=rectangle,color=blue,faceted color=white]
coordinates {(-2.3,-1.1) (-2.3,1.1) (2.3,1.1) (2.3,-1.1)};
\end{axis}
\end{tikzpicture}
\end{center}
\end{frame}
产量
我怎样才能使某个东西居中但又很大?(整个屏幕会很完美,但会缩放为正方形)。