\ifbeamer@anotherslide y \ifbeamer@localanotherslide en beamerbasedecode.sty

\ifbeamer@anotherslide y \ifbeamer@localanotherslide en beamerbasedecode.sty

Al comienzo del archivo fuente beamerbasedecode.styde beamerla clase, se definen dos modificadores:

\newif\ifbeamer@anotherslide
\newif\ifbeamer@localanotherslide

Al leer beamerbasedecode.styy beamerbaseframe.sty, tengo algunos conocimientos sobre \ifbeamer@anotherslide: ​​En cada frameentorno, beamerllama \beamer@masterdecodey \beamer@masterdecodecambiaría el interruptor \ifbeamer@anotherslide. Si bien es cierto, beamerlo llama \beamer@masterdecodeuna y otra vez, y al final genera todas las diapositivas en el marco.

Por dentro \beamerbasedecode.sty, parece que \ifbeamer@anotherslidey \ifbeamer@localanotherslidesiempre tienen el mismo valor:

\global\beamer@anotherslidetrue\beamer@localanotherslidetrue

La única diferencia es el \globalanterior al primero. Pero en la macro principal \beamer@masterdecode, la segunda también se hace global.

\def\beamer@stoptexts{| stop:0| }
{
   \catcode`\|=13
   \catcode`\:=13
   \catcode`\,=13
   \catcode`\.=13
   \catcode`\+=13
   \catcode`\-=13
   \catcode`\(=13
   \catcode`\)=13
   \catcode`\ =13
\gdef\beamer@masterdecode#1{% must be called within a group
\ifnum\catcode`\|=13\edef|{\string|}\fi%
\ifnum\catcode`\:=13\edef:{\string:}\fi%
\ifnum\catcode`\,=13\edef,{\string,}\fi%
\ifnum\catcode`\.=13\edef.{\string.}\fi%
\ifnum\catcode`\+=13\edef+{\string+}\fi%
\ifnum\catcode`\-=13\edef-{\string-}\fi%
\ifnum\catcode`\(=13\edef({\string(}\fi%
\ifnum\catcode`\)=13\edef){\string)}\fi%
\ifnum\catcode`\ =13\edef {\string }\fi%
\edef\beamer@@@temp{#1\beamer@stoptexts}%
\beamer@localanotherslidefalse%
\setbox0=\hbox{%
\expandafter\beamer@decode\beamer@@@temp%
\ifbeamer@localanotherslide\global\beamer@localanotherslidetrue\fi}%
}%

Esto me confunde: ¿cuáles son las diferencias entre \ifbeamer@anotherslidey \ifbeamer@localanotherslide? ¿Por qué necesitamos \ifbeamer@localanotherslide?

información relacionada