https://github.com/cebe/tex-presentation
Template for starting a new latex beamer presentation.
https://github.com/cebe/tex-presentation
Last synced: 5 months ago
JSON representation
Template for starting a new latex beamer presentation.
- Host: GitHub
- URL: https://github.com/cebe/tex-presentation
- Owner: cebe
- Created: 2013-01-14T23:09:32.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2014-05-10T20:17:01.000Z (about 12 years ago)
- Last Synced: 2025-04-28T12:18:30.547Z (about 1 year ago)
- Language: TeX
- Size: 188 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
tex-presentation
================
Template for starting a new latex beamer presentation.
Also defines some useful patterns which are described under [Built in features](#Built in features).
## How to use
1. Copy example.tex somewhere to use it as the base for your new presentation
2. adjust the `\featurePath` command definition to the relative path where features are located
## Built in features
To include all features, use
```tex
\input{features/all}
```
### TikZ overlay
```tex
\input{features/overlays/def}
```
Simple putting text or images in a relative positioned overlay.
```tex
\tikzoverlay at (-1cm,-5cm) (name) {%
content
};%
```
There are 3 types of overlays:
- `tikzoverlay` overlay with white background
- `tikzboverlay` overlay with bordered background
- `tikztoverlay` overlay with transparent background
### Speech bubbles
```tex
\input{features/bubbles/def}
```
TODO
### Colored tables
```tex
\input{features/tablecolors/def}
```
TODO