Beamer main themes are a combination of
- inner themes: for elements, such as lists and blocks,
- outer themes: for frame layout, such as footline and headline,
- color themes: for color combinations,
- font themes: with font settings.
Warsaw
is basically
Code: Select all
\useinnertheme[shadow=true]{rounded}
\useoutertheme{shadow}
\usecolortheme{orchid}
\usecolortheme{whale}
\setbeamerfont{block title}{size={}}
And the shadow theme uses the split theme, where that definition is.
Similar with the other main presentation themes. To see what's actually used, we can take a look into the file or into the .log file to see which files are loaded.
Here you can click the "Run LaTeX here" button to get the log file:
Code: Select all
%!TeX log
\documentclass{beamer}
\usetheme{Warsaw}
\begin{document}
\begin{frame}
abc
\end{frame}
\end{document}
Here is the place starting line 666 in the log file where we can see the loaded theme files:
Code: Select all
...
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasethemes.sty))
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerthemedefault.sty
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerfontthemedefault.sty)
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamercolorthemedefault.sty)
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerinnerthemedefault.sty
\beamer@dima=\dimen282
\beamer@dimb=\dimen283
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerouterthemedefault.sty)))
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerthemeWarsaw.sty
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerinnerthemerounded.sty)
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerouterthemeshadow.sty
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerouterthemesplit.sty))
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamercolorthemeorchid.sty)
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamercolorthemewhale.sty))
Stefan