]> gitweb.michael.orlitzky.com - beamer-mjo.git/blob - README
Simplify the footer template.
[beamer-mjo.git] / README
1 == What ==
2
3 The "UMBC" Beamer theme I use in all of my presentations at UMBC.
4
5 == How ==
6
7 In the makefile of your project, you should list all of the pieces of
8 the theme. For example,
9
10 UMBC = beamercolorthemeUMBC.sty beamerfontthemeUMBC.sty
11 UMBC += beamerinnerthemeUMBC.sty beamerouterthemeUMBC.sty
12 UMBC += beamerthemeUMBC.sty images/umbc_logo.pdf
13
14 The absolute paths to those libraries, on your system, can be found
15 using "kpsewhich" from the kpathsea suite:
16
17 UMBCPATHS = $(shell kpsewhich $(UMBC))
18
19 Now add those as dependencies of your document:
20
21 example.pdf: example.tex example.bbl ... $(UMBCPATHS)
22
23 WARNING: This will only work as long as the path to beamer-umbc is in
24 your $TEXINPUTS environment variable! I suggest setting it in
25 ~/.bashrc.