Search code examples
latexbeamer

How do you modify the title font options for a single slide in Beamer?


I'm writing a presentation in Beamer, the default options for the font title are the following

\setbeamerfont*{frametitle}{size=\Large,
                            series=\bfseries,
                            parent=structure}

I want to override those option just for a couple of slides, but I didn't find any answer. For example, I'd like to lower the size and eliminate the bold


Solution

  • I solved my issue by placing

    \begin{frame}{\normalsize{FRAMETITLE}}
      
    \end{frame}
    

    in the frame I needed to modify. I know it was stupid, just to say I solved