Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stas/beamer-ubuntu
Ubuntu Beamer Template
https://github.com/stas/beamer-ubuntu
Last synced: 16 days ago
JSON representation
Ubuntu Beamer Template
- Host: GitHub
- URL: https://github.com/stas/beamer-ubuntu
- Owner: stas
- License: mit
- Created: 2012-11-11T23:17:11.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2019-09-08T10:44:13.000Z (over 5 years ago)
- Last Synced: 2025-01-03T09:43:58.724Z (23 days ago)
- Language: TeX
- Size: 22.5 KB
- Stars: 2
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE.txt
Awesome Lists containing this project
README
Ubuntu Beamer Template
======================A simple template to be used for Ubuntu related slides.
![Ubuntu Beamer Template Screenshot](http://i.imgur.com/CoTi5.png)
### How to use
Make sure you clone this in your `texmf` folder.
Example:
```bash
$ git clone [email protected]:stas/beamer-ubuntu.git ~/texmf/tex/latex/beamer/themes/theme/Ubuntu
```Now you should be able to use the theme:
```tex
\usetheme{Ubuntu}
```### Requirements
On Ubuntu/Debian, installing the packages below, should be enough:
* latex-beamer
* texlive-xetex### Compiling files
Please use `xelatex` to compile the `.tex` files so we can use Ubuntu system
font and other utf8 awesomeness.Example `Makefile`
```make
PDFLATEX:=xelatex -shell-escape
TARGET:=slidesdefault: main
main:
@$(PDFLATEX) $(TARGET).PHONY: clean
clean:
@rm -f $(TARGET)*.aux \
$(TARGET)*.log \
$(TARGET)*.nav \
$(TARGET)*.out \
$(TARGET)*.snm \
$(TARGET)*.toc \
$(TARGET)*.vrb \
$(TARGET)*.pdf \
$(TARGET)*.dvi \
$(TARGET)*.ps \
$(TARGET)*.bbl \
$(TARGET)*.blg \
$(TARGET)*.thm \
$(TARGET)*.brf \
$(TARGET)*.pyg \
missfont.log \
x.log
@rm -f *~
```### Credits
* [Ian Yang](https://github.com/doitian) for his work on Intridea template.