5

Beamer offers \setbeamertemplate and \addtobeamertemplate. I am trying to change one of these templates, but I cannot find a command to examine the current value of a template.

The use case is that I try to add the from number to the frame title in article mode. I would like to make other modification to the default rendering of frames, and this some rather difficult without knowing the default behavior of frames.

Yossi Gil
  • 15,951

1 Answers1

4

\setbeamertemplate{<element>}{<template>} creates \csname beamer@@tmpl@<element>\endcsname to be <template> (in beamertemplates.sty). So, you could examine

\makeatletter
\expandafter\show\csname beamer@@tmpl@<element>\endcsname
\makeatother

\addtobeamertemplate adds content to the same \beamer@@tmpl@<element>.

Werner
  • 603,163