]> gitweb.michael.orlitzky.com - beamer-mjo.git/blob - README
COPYING,LICENSE: add 'em (AGPL-3.0+)
[beamer-mjo.git] / README
1 == What ==
2
3 The "mjo" beamer theme I use in all of my presentations. It started as
4 the beamer-umbc theme that I used at UMBC, which in turn was based on
5 my old Towson University theme. (Thankfully, both schools have the
6 same colors.)
7
8 == How ==
9
10 In the makefile of your project, you should list all of the pieces of
11 the theme. For example,
12
13 BEAMERMJO = beamercolorthememjo.sty beamerfontthememjo.sty
14 BEAMERMJO += beamerinnerthememjo.sty beamerouterthememjo.sty
15 BEAMERMJO += beamerthememjo.sty
16
17 The absolute paths to those libraries, on your system, can be found
18 using "kpsewhich" from the kpathsea suite:
19
20 BEAMERMJOPATHS = $(shell kpsewhich $(BEAMERMJO))
21
22 Now add those as dependencies of your document:
23
24 example.pdf: example.tex example.bbl ... $(BEAMERMJOPATHS)
25
26 WARNING: This will only work as long as the path to beamer-mjo is in
27 your $TEXINPUTS environment variable! I suggest setting it in ~/.bashrc.