Как изменить нижний колонтитул/пешеходную линию одной рамки в Beamer?

StackOverflow https://stackoverflow.com/questions/3103989

  •  29-09-2019
  •  | 
  •  

Вопрос

Так что в основном у меня есть что -то подобное в верхней части моего файла Tex:

\setbeamertemplate{footline}{Number \insertframenumber}

Это применяется «номер <#>» к нижней части/ног всех кадров. Теперь я хочу изменить ногу для Один отдельный кадр. Анкет Удивительно, но следующее не работает:

\begin{frame}
    \setbeamertemplate{footline}{New template \insertframenumber}
\end{frame}

Как добиться смены ног/нижнего колонтитула для Один отдельный кадр?

Это было полезно?

Решение

??????? ?????! ??? ?????? ???????, ??? ??? ?? ??????, ????? ???????? ??? ??????, ??? ?????? ??????:

\documentclass{beamer}
\setbeamertemplate{footline}{goo \insertframenumber}

\begin{document}
    \begin{frame}[t]{Frame 1}
        A
    \end{frame}

    { % these braces make the change local to the single frame
        \setbeamertemplate{footline}{boo \insertframenumber}
        \begin{frame}[t]{Frame 2}
            B
        \end{frame}
    }

    \begin{frame}[t]{Frame 3}
        C
    \end{frame}
\end{document}
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top