Latex Beamer themes
[Warning: This post is a backup recovery from my previous Wordpress blog. All content was automatically converted accessing a MySQL database using a Python script (details). Mostly are in Portuguese but if you are interest I can translate to English. If you found any problem dont’t hesitate to contact me in comments.]
Creating your presentation slides with Latex (Beamer) is quick and easy when you have a template to based on. I've created one example describing the main features that an average user might need and setted to different templates. You can run by typing:
$ pdflatex file.tex
Enjoy :-)
I had to rename template file from .tex to .txt to upload. If you were compile, rename to .tex again.
- AnnArbor - template (.tex) and example (.pdf)
- CambridgeUS - template (.tex) and example (.pdf)
- Hannover - template (.tex) and example (.pdf)
- Antibes - template (.tex) and example (.pdf)
- Copenhagen - template (.tex) and example (.pdf)
- Ilmenau - template (.tex) and example (.pdf)
- Bergen - template (.tex) and example (.pdf)
- Darmstadt - template (.tex) and example (.pdf)
- JuanLesPins - template (.tex) and example (.pdf)
- Berkeley - template (.tex) and example (.pdf)
- Dresden - template (.tex) and example (.pdf)
- Luebeck - template (.tex) and example (.pdf)
- Berlin - template (.tex) and example (.pdf)
- Frankfurt - template (.tex) and example (.pdf)
- Madrid - template (.tex) and example (.pdf)
- Boadilla - template (.tex) and example (.pdf)
- Goettingen - template (.tex) and example (.pdf)
- Malmoe - template (.tex) and example (.pdf)
- Marburg - template (.tex) and example (.pdf)
- Szeged - template (.tex) and example (.pdf)
- PaloAlto - template (.tex) and example (.pdf)
- Montpellier - template (.tex) and example (.pdf)
- Warsaw - template (.tex) and example (.pdf)
- boxes - template (.tex) and example (.pdf)
- Pittsburgh - template (.tex) and example (.pdf)
- default - template (.tex) and example (.pdf)
- Rochester - template (.tex) and example (.pdf)
- Singapore - template (.tex) and example (.pdf)
I created this template to quick access what that I most use on presentations. Things I forgot on purpose: I didn’t mentioned figures, but is easy too.
Worth seeing: for diagrams I noted that Dia exports to Latex, so It’s a quick way to insert some blocks or some UML interface. Finally, embed Python inside Latex still works too :-)
** See below ONLY if you are interested in HOW I made these templates **
Of course that I didn’t create each file by hand. I used the following lines to create two script files in order to replace the text and run pdflatex. (list.txt)
for i in `cat list.txt` ; do echo "sed -e
's/^\\\usetheme{.*/\\\usetheme{$i}/' beamer-template.tex > $i-example.tex" ; done
> script.sh
for i in `cat list.txt` ; do echo "pdflatex $i-example.tex" ; done >
script-make.sh