josephwright / beamer

A LaTeX class for producing presentations and slides
Other
1.35k stars 139 forks source link

Fix incorrect Beamer template names for `structureenv` #862

Closed Leo3418 closed 9 months ago

Leo3418 commented 9 months ago

As per Section 12.2 of the Beamer User Guide for version 3.70, the Beamer template names for structureenv should be structure begin and structure end. However, some of the Beamer package's source files are not using these exact names.

An issue caused by this is that, in article mode, text in structureenv is not typeset in boldface as specified also by Section 12.2. A minimal working example is:

\documentclass{article}
\usepackage{beamerarticle}
\begin{document}
\begin{frame}
    \structure{This text should be typeset in boldface.}
\end{frame}
\end{document}
samcarter commented 9 months ago

@Leo3418 Thanks a lot for spotting this and your PR!