View on GitHub

Beamer2Thesis

Thesis theme for Beamer

Download this project as a .zip file Download this project as a tar.gz file

Introduction

Welcome! This is the homepage of Beamer2Thesis, a Thesis theme for Beamer. You can find the documentation realized, of course, as presentation in two languages: the english guide and the italian guide. The documentation is also available with other theme options, for example in this english guide three logos are present in the titlepage, while in this italian guide the titlepage shows how multi-candidate, multi-supervisor and multi-assistant supervisor are handled.

Beamer2Thesis is distributed under TeXLive and MiKTeX and it is part of the Comprehensive TeX Archive Network - CTAN.


How to contact the author

There are basically two ways to contact the author:

  1. send me an email;
  2. join the Facebook group/Facebook page and report in chat or as a post your problem.

Please, if you have problems try to produce a minimal working example (MWE) in which I can immediately understand the issue.


The first example

This is a minimal example in which all default options are used.

\documentclass{beamer}
\usetheme[titlepagelogo=logopolito]{TorinoTh}
\author{name-of-the-author}
\rel{name-of-the-supervisor}
\title{title-of-your-thesis}
\ateneo{name-of-your-University}
\date{\today}

\begin{document}
\titlepageframe

\begin{tframe}{title-of-the-frame}
text
\end{tframe}
\end{document}

The two frames that are produced are:

Title page frame

Text frame


A second example

In this second example, some options are shown: the default color is set to green, the language is italian, the bullet shape is square and there are more advisors and candidates.

\documentclass{beamer}
\usetheme[titlepagelogo=logopolito,
  color=green,
  language=italian,
  bullet=square,
  secondsupervisor=true,
  assistantsupervisor=true,
  secondassistantsupervisor=true,
  secondcandidate=true
  ]{TorinoTh}
\author{Claudio Fiandrino}
\rel{Mario Rossi}
\title{Beamer2Thesis, un tema Beamer per le tesi di Laurea}
\ateneo{Politecnico di Torino}
\date{3 Maggio 2012}
\secondsupervisor{Paolo Bianchi}
\assistantsupervisor{Luca Verdi}
\secondassistantsupervisor{Valentina Gialli}
\secondcandidate{Elisa Rossi}


\begin{document}
\titlepageframe

\begin{tframe}{Una diapositiva}
\begin{itemize}
\item Primo elemento
\begin{itemize}
\item un elemento annidato
\item un secondo elemento annidato
\end{itemize}
\item Secondo elemento
\end{itemize}
\end{tframe}
\end{document}

As result, the following two frames are produced:

Title page frame-second example

Text frame-second example


Use a different language than english or italian

Beamer2Thesis from the first version only provided support for english and italian languages. From the version 2.2, also other languages are supported. Here is an example with spanish.

\documentclass{beamer}
\usetheme[titlepagelogo=logopolito,
  color=red,
  language=spanish,
  bullet=triangle,
  coding=utf8,
  pageofpages=de,
  notshowauthor=true,
  assistantsupervisor=true,
  ]{TorinoTh}
\author{Claudio Fiandrino}
\rel{Mario Rossi}
\title[Titulo]{Título de la tesis muy larga}
\ateneo{Mi universidad}
\date{3 Maggio 2012}
\assistantsupervisor{Luca Bianchi}

\setrellabel{Relator Tesis}
\setcandidatelabel{Candidato}
\setassistentsupervisorlabel{Co Tesis}
\setsubject{Tesis de Laurea}

\begin{document}
\titlepageframe

\begin{tframe}{Titulo}
\highlight{Debido} a que el número de grafías para estos sonidos nuevos 
resultaba excesivo (z, c, ç) y a que su uso ya no respondía a diferencias reales, 
la RAE decidió, en el siglo XVIII, simplificar el alfabeto eliminando la ç.
\end{tframe}
\end{document}

As result, the following two frames are produced:

Title page frame-third example

Text frame-third example