Skip to content

Commit

Permalink
Update to the 2018 brand guidelines
Browse files Browse the repository at this point in the history
  • Loading branch information
dawbarton committed Apr 16, 2020
1 parent 4e740e8 commit 323bb95
Show file tree
Hide file tree
Showing 21 changed files with 461 additions and 840 deletions.
28 changes: 28 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
Copyright (c) 2012, 2020 David A.W. Barton ([email protected])
All rights reserved.

The latest version of this theme can be found at
https://github.com/db9052/UoB-beamer-theme

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the University of Bristol nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
56 changes: 56 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# Makefile to make all the PDF files needed

# Main Latex source file
MAIN = example.tex

# Lectures
LECTURES = 01

# Cleaning
CLEAN=.aux .log .nav .out .snm .toc .vrb .synctex.gz .pyc .bbl .blg .idx .fls .fdb_latexmk

# Latex to use
LATEX=lualatex

# Default target
default : current

# Current
current : $(MAIN)
$(LATEX) "$(MAIN)"
grep -q "rerunfilecheck Warning" "$@.log" && $(LATEX) "$(MAIN)"

# All
all : slides handouts

# All slides
slides : $(addprefix slides-, $(LECTURES))

# All handouts
handouts : $(addprefix handout-, $(LECTURES))

# Individual slides
slides-% : $(MAIN)
$(LATEX) -jobname "$@" "\def\uselecture{$*}\input{$(MAIN)}"
grep -q "rerunfilecheck Warning" "$@.log" && $(LATEX) -jobname "$@" "\def\uselecture{$*}\input{$(MAIN)}"
@mkdir -p slides
@mv -f "$@.pdf" slides
@rm -f $(addprefix $@, $(CLEAN))

# Individual slides
handout-% : $(MAIN)
$(LATEX) -jobname "$@" "\def\uselecture{$*}\PassOptionsToClass{handout}{beamer}\input{$(MAIN)}"
grep -q "rerunfilecheck Warning" "$@.log" && $(LATEX) -jobname "$@" "\def\uselecture{$*}\PassOptionsToClass{handout}{beamer}\input{$(MAIN)}"
@mkdir -p handouts
@mv -f "$@.pdf" handouts
@rm -f $(addprefix $@, $(CLEAN))

# Other targets
clean :
@rm -f $(addprefix *, $(CLEAN))

remake : cleanpdf all

dummy : ;

.PHONY : default all lectures clean cleanpdf remake dummy
31 changes: 7 additions & 24 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,30 +1,13 @@
# University of Bristol presentation theme based on the PowerPoint template

Copyright (c) 2012, David A.W. Barton ([email protected])
All rights reserved.
This is a LaTeX Beamer theme based on the 2018 University of Bristol brand guidelines. It can be used with `pdflatex` and `lualatex`, though for the best results use `lualatex`. (It probably works with `xetex` as well with some very minor changes.)

The latest version of this theme can be found on
[GitHub](https://github.com/db9052/UoB-beamer-theme)
When used with `lualatex` it uses Rockwell and Arial as the primary fonts (you might need to install them separately). If you use `pdflatex` then Concrete and Helvetica are used as the closest alternatives.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
See `example.pdf` for an example output.

* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the University of Bristol nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
Copyright (c) 2012, 2020, David A.W. Barton ([email protected])
All rights reserved.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL DAVID AW BARTON BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
The latest version of this theme can be found on
[GitHub](https://github.com/db9052/UoB-beamer-theme)
Binary file removed UoB-bullet.pdf
Binary file not shown.
89 changes: 0 additions & 89 deletions UoB-bullet.svg

This file was deleted.

Binary file removed UoB-logo.pdf
Binary file not shown.
Loading

0 comments on commit 323bb95

Please sign in to comment.