Beamer:块前的垂直空间

Beamer:块前的垂直空间

我只想在框架以块环境开始时删除块环境之前的空格。

我当前的块环境启动如下。

\defbeamertemplate*{block begin}{}
{
    \par\removelastskip\vskip\medskipamount

但是,我想\vskip\medskipamount在块用作时自动删除它

\begin{frame}
    % remove the vertical space here
    \begin{block}
        some content
    \end{block}
    % don't remove the vertical space here
    \begin{block}
        some content
    \end{block}
\end{frame}

相关内容