-
Notifications
You must be signed in to change notification settings - Fork 845
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
titleformat not working correctly for section titles #371
Comments
What exactly is the output for the minimal code, and what is it that you want it to produce? If you want |
The output is "Introduction", while I expected "INTRODUCTION"
Ok, I didn't know this but I'm only interested in the |
I just ran into this, too. I thinkered around a little bit, using the simple introductory example provided in the README. It seems that I suspect that the problem may be the surgery that this theme does with the |
This is an old issue, but I also ran into it. You can redefine the beamer template for the section page in your preamble: \makeatletter
\defbeamertemplate{section page}{newprogressbarsectionpage}{
\centering
\begin{minipage}{22em}
\raggedright
\usebeamercolor[fg]{section title}
\usebeamerfont{section title}
\MakeUppercase\insertsectionhead\\[-1ex]
\usebeamertemplate*{progress bar in section page}
\par
\ifx\insertsubsectionhead\@empty\else%
\usebeamercolor[fg]{subsection title}%
\usebeamerfont{subsection title}%
\insertsubsectionhead
\fi
\end{minipage}
\par
\vspace{\baselineskip}
}
\makeatother
\setbeamertemplate{section page}[newprogressbarsectionpage] I just inserted |
Yeah, that's what I have been doing. There is a growing pile of small issues like this one that are not getting fixed. |
Issue description
The option
titleformat=allcaps
ortitleformat section=allcaps
doesn't seem to affect the format of section titles, while frame titles, the main title, etc. works.I have tried either passing these options to the
\usetheme
or by\metroset
.Trying to reproduce
Minimal code to reproduce the issue
Software tried:
Additional notes
Strangely
titleformat=smallcaps
do work for section titles, but nottitleformat=allsmallcaps
.The text was updated successfully, but these errors were encountered: