Skip to content

Commit

Permalink
Merge pull request #1 from simonharrer/master
Browse files Browse the repository at this point in the history
Minor README improvements.
  • Loading branch information
lenhard committed Oct 30, 2012
2 parents b5b3f01 + 5d4f527 commit 41be676
Showing 1 changed file with 31 additions and 25 deletions.
56 changes: 31 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,35 +1,37 @@
# ub-beamer

Beamer template inspired by the corporate design of the University of Bamberg
Beamer template inspired by the corporate design of the [University of Bamberg](http://www.uni-bamberg.de/)

## Usage

Include the ub-beamer.sty file in your path and use it with a `\usepackage` command.
Include the `ub-beamer.sty` file in your path and use it with a `\usepackage` command.
You also need the pdf file `images/ub-logo.pdf` that contains the logo image to be used on the slides.

Simple usage scenario, also contained in `example.tex`:

\documentclass{beamer}
\usepackage{ub-beamer}
```tex
\documentclass{beamer}
\usepackage{ub-beamer}
%Meta information
\title{Template for a Beamer Presentation using the University of Bamberg Corporate Design}
\author{J\"org Lenhard}
\institute{Distributed Systems Group - WIAI - University of Bamberg}
\date{\today}
%Meta information
\title{Template for a Beamer Presentation using the University of Bamberg Corporate Design}
\author{J\"org Lenhard}
\institute{Distributed Systems Group - WIAI - University of Bamberg}
\date{\today}
%The content of the slides
\begin{document}
%The content of the slides
\begin{document}
\begin{frame}[plain]
\titlepage
\end{frame}
\begin{frame}[plain]
\titlepage
\end{frame}
\begin{frame}{Title of the slide}
This is a template for a University of Bamberg presentation with beamer
\end{frame}
\begin{frame}{Title of the slide}
This is a template for a University of Bamberg presentation with beamer
\end{frame}
\end{document}
\end{document}
```

## Features
The template comes with the following color definitions that conform to the University of Bamberg colors
Expand All @@ -43,18 +45,22 @@ The template comes with the following color definitions that conform to the Univ

It offers several commands for formatting text in blue

%Marks text in blue
\markB{some text}
```tex
%Marks text in blue
\markB{some text}
%Marks text in blue and bold
\markBB{some text}
%Marks text in blue and bold
\markBB{some text}
%Marks text in blue and italic
\markBI{some text}
%Marks text in blue and italic
\markBI{some text}
```

You can use another logo next to the university logo (your group logo) by redefining a variable.
This logo will show up in the right upper corner of each slide instead of the university logo.

\def \grouplogofile {images/example-group-logo.pdf}
```tex
\def \grouplogofile {images/example-group-logo.pdf}
```

The template uses square bullet points instead of round ones.

0 comments on commit 41be676

Please sign in to comment.