SCons / scons

SCons - a software construction tool
http://scons.org
MIT License
2.11k stars 320 forks source link

Support Tracking Custom Beamer Themes in LaTeX #4620

Closed kprussing closed 1 month ago

kprussing commented 1 month ago

Describe the Feature

The beamer package provides a mechanism for customizing presentations via 'themes'. Beamer defines five types of theme: a general theme, a color theme, a font theme, an inner theme, and an outer theme. These are enabled with the commands:

\usetheme{mwe}
\usecolortheme{mwe}
\usefonttheme{mwe}
\useinnertheme{mwe}
\useoutertheme{mwe}

The themes function like packages loaded via \usepackage except the file names are converted to beamer(|color|font|inner|outer)mwe.sty. If a user has a custom version in their project, SCons should pick these files (and their further includes) as dependencies of a document.

Required information

Additional context

I have a custom theme for work that I would like SCons to track for changes.

mwichmann commented 1 month ago

Should have been closed by merging #4621