Skip to content

Commit

Permalink
Support a list of images for titlegraphic (#10246)
Browse files Browse the repository at this point in the history
Allow a list of title graphics in default.beamer
Title graphic options will be applied to each title graphic.
Images will be separated by `\enspace`.
  • Loading branch information
twsh authored Oct 1, 2024
1 parent 4211efa commit e583ab7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MANUAL.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2902,7 +2902,7 @@ These variables change the appearance of PDF slides using [`beamer`].
: options for LaTeX beamer themes (lists)

`titlegraphic`
: image for title slide
: image for title slide: can be a list

`titlegraphicoptions`
: options for title slide image
Expand Down
5 changes: 4 additions & 1 deletion data/templates/default.beamer
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,10 @@ $if(institute)$
\institute{$for(institute)$$institute$$sep$ \and $endfor$}
$endif$
$if(titlegraphic)$
\titlegraphic{\includegraphics$if(titlegraphicoptions)$[$for(titlegraphicoptions)$$titlegraphicoptions$$sep$, $endfor$]$endif${$titlegraphic$}}
\titlegraphic{
$for(titlegraphic)$
\includegraphics$if(titlegraphicoptions)$[$for(titlegraphicoptions)$$titlegraphicoptions$$sep$, $endfor$]$endif${$titlegraphic$}$sep$\enspace
$endfor$}
$endif$
$if(logo)$
\logo{\includegraphics{$logo$}}
Expand Down

0 comments on commit e583ab7

Please sign in to comment.