我想将内容居中对齐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
在段落结束之前已经超出了范围,因此该段落没有居中。