Tell me more ×
TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.

So I found this totally awesome looking presentation that's made in LaTeX: pyprop.googlecode.com/files/disputas.pdf

I love how there is custom header with university logo. I'd like to do something like that (different university obviously XD), and I would like to find out how to do sth like that.

From what I've read on beamer manual, I only find a way how to put custom background image, but this seems to be modified theme.

And I don't want to send e-mail to the person who did this presentation (it would be totally embarrassing), but I would like to find out how to do sth like that.

Any suggestions, sites with code that does sth like this?

Any help is appreciated ^^

share|improve this question

2 Answers

up vote 28 down vote accepted

You'll need to create a .sty file and install it like described here: Where to place custom beamer themes

A sweet tutorial about customizing beamer themes: http://www.math.umbc.edu/~rouben/beamer/quickstart-Z-H-8.html#node_sec_8

You can also find examples to modify: http://latex.simon04.net/

Here's a particularly good one: http://matdat.life.ku.dk/LaTeX/Frederiksberg/download/

This 4 may be a good starting point for customization, check out the files under 'color' directory to change theme: http://staff.science.uva.nl/~faolieho/index.php?fuseaction=var.beamer

The antwerpen theme is nice, and provides examples for using images.

\pgfdeclareimage[height=\textlogoheight]{uTextColor}{logo_UA_tekst_kl}

\ifthenelse{ \boolean{beamer@dark} \OR \boolean{beamer@darktitle} }
% then
{\pgfdeclareimage[width=\paperwidth]{uaBackgroundDark}{uaBackgroundDarkBlue}}
%else
{}
share|improve this answer
someone with more rep please edit to add links to answer? – justin cress Apr 10 '11 at 14:39
Thank you I'll look these up ^^ – dingo_d Apr 11 '11 at 8:37

if it's still of interest: A template that is very similar and I think the guy that made the presentation you mentioned gave some advise...

http://www.drbunsen.org/custom-beamer-theme.html

share|improve this answer
1  
I really liked the presentation you linked to. Thus, I started searching for the original file. Guess what? The author GRACIOUSLY made the entire source file and sty file available. Here is the link code.google.com/p/pyprop/downloads/list Enjoy! – Jason Feb 20 at 3:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.