Document ClassesCreating slides with Beamer

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
etp94
Posts: 16
Joined: Sat Sep 03, 2016 11:55 pm

Creating slides with Beamer

Post by etp94 »

Hello! I'm trying to make some slides by using Beamer, I'm looking at this guide:

https://www.sharelatex.com/blog/2013/08 ... s-pt1.html

I simply put my information at the example code, and it seems that my name, my institute name and my title, are too long to fit in the footer of the slide.

Code:

Code: Select all

\documentclass{beamer}

\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage[spanish,activeacute,es-lcroman,es-tabla]{babel}

\usetheme{Boadilla}

\title{Diseño de un generador de números aleatorios mediante FPGA}

\author{Esteban Torres Pérez}
\institute{Universidad Autónoma de Guadalajara campus Tabasco}
\date{\today}

\begin{document}

\begin{frame}
\titlepage
\end{frame}

\end{document}
The theme is Boadilla, so I don't know if I can change some setups of the theme in order to skip the institute name print at the foot of the title slide.

Thanks for reading!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Stefan Kottwitz
Site Admin
Posts: 10290
Joined: Mon Mar 10, 2008 9:44 pm

Creating slides with Beamer

Post by Stefan Kottwitz »

Hello Esteban!

You can provide the short title in square brackets as optional argument. You can even let it empty. Such as:

Code: Select all

\title[Generador de números]{Diseño de un generador de números aleatorios mediante FPGA}
 \author{Esteban Torres Pérez}
\institute[]{Universidad Autónoma de Guadalajara campus Tabasco}
Stefan
LaTeX.org admin
Post Reply