Beamer - 块和脚注周围的圆角

Beamer - 块和脚注周围的圆角

我的目标是获得没有阴影的圆角,因此我使用了以下命令 \setbeamertemplate{blocks}[rounded][shadow=false]

但似乎这个选项也会影响脚注,即脚注的行为就像“列”环境中的脚注一样 - 这是我这边的错误,有没有办法避免这种行为并仍然在块周围获得圆角? 在此处输入图片描述 在此处输入图片描述

例子:

\documentclass{beamer}
\usetheme{boxes}
\usecolortheme{crane}
%\setbeamertemplate{blocks}[rounded][shadow=false] %<----!
\begin{document}
\begin{frame}
\begin{block}{This a title for the block}
This is the text inside block.\footnote{Footnotes are possible as well}
\end{block}
\end{frame}
\end{document}

答案1

以下是我认为您想要的:

\documentclass{beamer}
\usetheme{boxes}
\usecolortheme{crane}
\setbeamertemplate{blocks}[rounded][shadow=false]
\begin{document}
\begin{frame}
\begin{block}{Title}
This is a block\footnotemark
\end{block}
\footnotetext{My nice footnote}
\end{frame}
\end{document}

相关内容