beamerlines/README.md
2021-04-15 14:46:13 +02:00

124 lines
3.1 KiB
Markdown

# beamer lines themes
LaTeX beamer themes with customizable lines in various places.
## LaTeX Style files
The following style files are provided:
- `beamerthemelines.sty`: provides the `lines` theme ---
a general beamer theme (inner, outer and font theme)
with horizontal lines instead/in addition to colored boxes.
- `beamercolorthemeaptero.sty`: provides a palette of muted colors and
the `aptero` color theme fitting not only the `lines` theme.
- `beamerthemeut.sty`: provides the `ut` theme ---
the `lines` theme specifically adapted for the cooperate design of
the University of Tübingen.
- `beamercolorthemeut.sty`: the color palette of the cooperate design
of the University of Tübingen. Used by the `ut` theme.
## Usage of the `lines` theme
The `lines` theme can be used on its own, potentially together with
the `aptero` or `ut` color theme.
```
\documentclass[aspectratio=169,t]{beamer}
\usetheme[author,institute,date,title,page,hidelogo]{lines}
\usecolortheme{aptero}
\title{Line-based themes for beamer}
\author[Benda]{Jan Benda}
\institute[T\"ubingen]{Neuroethology, University of T\"ubingen}
\date[2021]{March 2021}
\logo{\includegraphics[height=3.5ex]{UT_BM_Rot_RGB}}
\titlelogo{\includegraphics[height=6ex]{UT_MNF_RGB}}
\titlegraphic{\includegraphics[width=\textwidth]{efishtitle}}
\begin{document}
\begin{frame}[plain]
\titlepage
\end{frame}
\begin{frame}{First slide}
Something to talk about.
\end{frame}
\end{document}
```
## Usage of the `ut` theme
When using the `ut` theme, then you need the style files for the
`lines` theme and the `ut` color theme as well.
```
\documentclass[aspectratio=169,t]{beamer}
\usetheme[author,date,title]{ut}
\title{Line-based themes for beamer}
\author[Benda]{Jan Benda}
\institute[T\"ubingen]{Neuroethology, University of T\"ubingen}
\date[2021]{April 2021}
\logo{\includegraphics[height=3.5ex]{UT_WBMW_Rot_RGB}}
\titlelogo{\includegraphics[height=5ex]{UT_MNF_RGB}\hfill%
\includegraphics[height=6ex]{BCCN_Tuebingen_Logo-long}\hfill%
\includegraphics[height=5ex]{CIN-E}}
\titlegraphic{\includegraphics[width=\textwidth]{efishtitle}}
\begin{document}
\begin{frame}[plain]
\titlepage
\end{frame}
\begin{frame}{First slide}
Something to talk about.
\end{frame}
\end{document}
```
## User guides and manual
See the `lines-example.tex` and the `ut-example.tex` file for examples
and descriptions of the respective themes.
`lines-manual.tex` explains the various templates introduced by the
lines theme and how they can be modified.
Run in your shell
```
> make talks
```
to compile them.
Or, on not so potent operating systems, compile them manually with
`pdflatex` or `lualatex`.
## Logos
- `UT_WBMW_Rot_RGB.pdf`: University of Tuebingen Logo
- `UT_MNF_RGB.pdf`: MNF - University of Tuebingen Logo
- `BCCN_Tuebingen_Logo-long.pdf`: Bernstein Computational Neurosciene Logo
- `CIN-E.jpg`: CIN logo
- `efishtitle.pdf`: simulation of electric fields of three fish for the title page
- `efishtitle.py`: source code, needs [thunderfish](https://github.com/bendalab/thunderfish)
## Installation
Copy the style files to appropriate places:
User specific:
```
./install.sh
```
System wide:
```
sudo ./install.sh
```