Document ClassesCreating a beamer theme

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
cirasj
Posts: 25
Joined: Mon Mar 09, 2009 3:26 pm

Creating a beamer theme

Post by cirasj »

I have a PowerPoint template that I would like to turn into a beamer theme. Is there any information or expamples to show me how to do that?

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Creating a beamer theme

Post by localghost »

cirasj wrote:[...] Is there any information or expamples to show me how to do that?
The beamer manual.

Best regards
Thorsten¹
cirasj
Posts: 25
Joined: Mon Mar 09, 2009 3:26 pm

Re: Creating a beamer theme

Post by cirasj »

Thorsten,

Thank you for the informaiton. Could you let me know what section of the manual. I read it and did not see the section on duplicating a PowerPoint theme.
josephwright
Site Moderator
Posts: 814
Joined: Tue Jul 01, 2008 2:19 pm

Creating a beamer theme

Post by josephwright »

It all depends on exactly what you want to do. PowerPoint works very differently to beamer, so the best you can hope for is similar, not the same (at least, not without so much effort that it is not worthwhile).

I've done a style which is similar to the official templates my employer uses. Luckily for me, these are quite plain, so I only had to make some simple changes and alter a few colours. I have two files, a colour file and a very short style file. The colours took a little effort to get "out" of PowerPoint, but in the end I managed it and got:

Code: Select all

\ProvidesPackage{beamercolorthemeUEA}
  [2008/11/09 v1.0 beamer 'UEA' colour theme]

\mode<presentation>

\definecolor{UEAblue}{RGB}{0,76,103}
\definecolor{UEAgrey}{RGB}{172,160,149}
\definecolor{UEAorange}{RGB}{255,160,35}

\setbeamercolor{normal text}{fg=UEAblue}
\setbeamercolor{alerted text}{fg=UEAorange}
\setbeamercolor{example text}{fg=UEAblue}
\setbeamercolor{structure}{fg=UEAblue}

\setbeamercolor{author}{fg=UEAgrey}
\setbeamercolor{date}{fg=UEAgrey}
\setbeamercolor{framesubtitle}{fg=UEAgrey}

\mode<all>
The main beamer style is then very simple:

Code: Select all

\ProvidesPackage{beamerthemeUEA}
  [2008/11/09 v1.0 beamer 'UEA' theme]
  
\mode<presentation>

\usefonttheme{default}
\usecolortheme{UEA}
\useinnertheme{default}
\useoutertheme{default}

\setbeamerfont{author}{size=\large}
\setbeamerfont{date}{size=\large}
\setbeamerfont{example text}{series=\bfseries}
\setbeamerfont{frametitle}{series=\bfseries,size=\large}
\setbeamerfont{framesubtitle}{series=\mdseries,size=\large}
\setbeamerfont{section}{series=\bfseries}
\setbeamerfont{title}{series=\bfseries}

\setbeamertemplate{navigation symbols}{}

\mode
<all>
If you try this style, you'll find it looks very much like a very plain PowerPoint one.
Joseph Wright
cirasj
Posts: 25
Joined: Mon Mar 09, 2009 3:26 pm

Re: Creating a beamer theme

Post by cirasj »

I have a PowerPoint template that I use for my graduate studies and I would like to use it in Beamer. I am looking to make a similar theme with the college logo and color scheme. I will follow your example to see if I can do the same.
zainor_983
Posts: 1
Joined: Wed Oct 05, 2011 3:06 pm

Re: Creating a beamer theme

Post by zainor_983 »

I try to create a beamer theme according to the PowerPoint template attached.
Help anyone?
Attachments
powerpoint template-USM-v2.pdf
powerPointTemplate
(158.94 KiB) Downloaded 2564 times
User avatar
Stefan Kottwitz
Site Admin
Posts: 10319
Joined: Mon Mar 10, 2008 9:44 pm

Re: Creating a beamer theme

Post by Stefan Kottwitz »

Hi,

did you try it? What's your start? We could help you in specific problems, however at least I don't have the time to produce complete templates starting from zero code for you.

Stefan
LaTeX.org admin
mnajem
Posts: 20
Joined: Thu Mar 18, 2010 12:23 pm

Creating a beamer theme

Post by mnajem »

zainor_983 wrote:I try to create a beamer theme according to the PowerPoint template attached.
Help anyone?
You did not search enough, no need to reinvent the wheel.
Lia Tze already did that the whole beamer template for you:

http://liantze.penguinattack.org/latext ... er-Gelugor
Post Reply