将块中的文本居中对齐

将块中的文本居中对齐

我想将内容居中对齐block,但似乎\centering\begin{center}...\end{center}不​​起作用:

\documentclass[11pt]{beamer}
\begin{document}
\begin{frame}{Introduction}
    \begin{block}{}
         {\centering
         content that i want to center-align
         }
    \end{block}
 \end{frame}
\end{document}

有人可以帮忙吗?

答案1

\documentclass[11pt]{beamer}
\begin{document}
\begin{frame}{Introduction}
    \begin{block}{}
         \centering
         content that i want to center-align
    \end{block}
 \end{frame}
\end{document}

您有一个虚假{}组,这意味着它\centering在段落结束之前已经超出了范围,因此该段落没有居中。

相关内容