beamer add tag
user34241 (imported from SE)
%I 

    \documentclass[ aspectratio = 1610 ]{beamer}
    
    \usepackage{amsthm}
    
    \usepackage{amsmath}
    
     \usetheme{Frankfurt} 
    
    \makeatletter
    
    \setbeamertemplate{theorem begin}{%
    
      \begin{\inserttheoremblockenv}%
    
      {\inserttheoremheadfont\ifx\inserttheoremaddition\@empty\else\inserttheoremaddition\fi}%
    }
    \setbeamertemplate{theorem end}
    
    {\end{\inserttheoremblockenv}}
    
    \makeatother
    
    \begin{document}
    
    \begin{frame}
    
    \begin{definition}[ Is it possible to produce this heading without the white bar below?]
    
    \end{definition}
    
    \end{frame}
    
    \end{document}
Top Answer
samcarter
Removing an empty body from a rounded beamer block is not trivial, however you can simply reverse roles and use a block with empty title:

```
\documentclass[ aspectratio = 1610 ]{beamer}

\usetheme{Frankfurt} 

\makeatletter

\setbeamertemplate{theorem begin}{%
  \begin{\inserttheoremblockenv}%
  {\inserttheoremheadfont\ifx\inserttheoremaddition\@empty\else\inserttheoremaddition\fi}%
}
\setbeamertemplate{theorem end}
{\end{\inserttheoremblockenv}}

\makeatother

\begin{document}

\begin{frame}

\begin{definition}[ Is it possible to produce this heading without the white bar below?]
\end{definition}

{
\setbeamercolor{block body}{bg=structure.fg!75!black,fg=white}
\begin{block}{}
\inserttheoremheadfont Is it possible to produce this heading without the white bar below?
\end{block}
}

\end{frame}

\end{document}
```

![Screen Shot 2020-06-15 at 12.45.33.png](/image?hash=cab1f60ac031e7c0ae4e607ea63de7c34fd773f6dbe7dc8c328f81d01f442670)

This room is for discussion about this question.

Once logged in you can direct comments to any contributor here.

Enter question or answer id or url (and optionally further answer ids/urls from the same question) from

Separate each id/url with a space. No need to list your own answers; they will be imported automatically.