Нет переноса строки после имени теоремы в бимере

Нет переноса строки после имени теоремы в бимере

Я применил ответ на вопросСодержание теоремы сразу после названия теоремы в бимерена мой вопрос. Я поставил \normalfont после \inserttheorempunctuation, но результат неожиданный. Не могли бы вы посмотреть изображение 1.

            \documentclass[envcountsect]{beamer}
            \usetheme{CambridgeUS}
            \usefonttheme{serif}
            \makeatletter
            \setbeamertemplate{theorem begin}
            {%
                \begin{\inserttheoremblockenv}
                    {%
                        \inserttheoremheadfont
                        \inserttheoremname
                        \inserttheoremnumber
                        \ifx \inserttheoremaddition \empty \else\ (\inserttheoremaddition)\fi%
                        \inserttheorempunctuation
                        \normalfont
                    }
                }
                \setbeamertemplate{theorem end}{\end{\inserttheoremblockenv}}
            \makeatother


             \begin{document}
                \section{ABC}
                \begin{frame}
                    \begin{theorem}[ABC]
                        This is a theorem
                    \end{theorem}
                \end{frame}
             \end{document}

Результат:

введите описание изображения здесь

Я хотел бы разместить контент сразу послеТеорема(без линии разрыва). Выглядит так

введите описание изображения здесь

решение1

Вам нужно поместить команды форматирования в тело, а не в заголовок, theoremblockenvи выбрать block titleшрифт и цвет для элементов заголовка, чтобы имитировать запрашиваемый вами стиль. Сравните с двумя примерами блоков с заголовками и без них.

Пример вывода

\documentclass[envcountsect]{beamer}

\usetheme{CambridgeUS}
\usefonttheme{serif}

\usepackage{etoolbox}

\makeatletter
\setbeamertemplate{theorem begin}
{%
\begin{\inserttheoremblockenv}
  {}{\usebeamerfont*{block title}\usebeamercolor[fg]{block title}%
  \inserttheoremname
  \inserttheoremnumber
  \ifx \inserttheoremaddition \empty \else\ (\inserttheoremaddition)\fi
  \inserttheorempunctuation}
  \normalfont
  }
  \setbeamertemplate{theorem end}{\end{\inserttheoremblockenv}}
\makeatother

\begin{document}

\section{ABC}

\begin{frame}

  \begin{theorem}[ABC]
    This is a theorem
  \end{theorem}

  Text.

  \begin{block}{Block title}
    A block with title.
  \end{block}

  Text.

  \begin{block}{}
    A block without title.
  \end{block}

\end{frame}

\end{document}

Связанный контент