diff options
| author | Thomas Hodgson <[email protected]> | 2024-10-01 20:02:43 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-10-01 11:02:43 -0700 |
| commit | 3ba968292b000c70a9b46473cf4af50b6cf649e8 (patch) | |
| tree | 868b943ccfa69561e26c23216d94d2d808a3b80b /data | |
| parent | 70482543971b79efa2ba0a6a36205758f4320894 (diff) | |
Beamer theme options (#10243)
Add theme options to default.beamer: `colorthemeoptions`, `fontthemeoptions`,
`innerthemeoptions`, `outerthemeoptions`.
Diffstat (limited to 'data')
| -rw-r--r-- | data/templates/default.beamer | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/data/templates/default.beamer b/data/templates/default.beamer index 4fbfe6ed9..032b4ebc3 100644 --- a/data/templates/default.beamer +++ b/data/templates/default.beamer @@ -42,19 +42,19 @@ $if(theme)$ \usetheme[$for(themeoptions)$$themeoptions$$sep$,$endfor$]{$theme$} $endif$ $if(colortheme)$ -\usecolortheme{$colortheme$} +\usecolortheme[$for(colorthemeoptions)$$colorthemeoptions$$sep$,$endfor$]{$colortheme$} $endif$ $if(fonttheme)$ -\usefonttheme{$fonttheme$} +\usefonttheme[$for(fontthemeoptions)$$fontthemeoptions$$sep$,$endfor$]{$fonttheme$} $endif$ $if(mainfont)$ \usefonttheme{serif} % use mainfont rather than sansfont for slide text $endif$ $if(innertheme)$ -\useinnertheme{$innertheme$} +\useinnertheme[$for(innerthemeoptions)$$innerthemeoptions$$sep$,$endfor$]{$innertheme$} $endif$ $if(outertheme)$ -\useoutertheme{$outertheme$} +\useoutertheme[$for(outerthemeoptions)$$outerthemeoptions$$sep$,$endfor$]{$outertheme$} $endif$ % Prevent slide breaks in the middle of a paragraph \widowpenalties 1 10000 |
