I am making a Beamer presentation in Latex with the following code
Code: Select all
\makeatletter
\let\ifGm@compatii\relax
\makeatother
\documentclass[mathserif]{beamer}
\mode<presentation>
{
\usetheme{Madrid}
}
\usepackage[english]{babel}
\usepackage[latin1]{inputenc}
%% title of the presentation
\title[]{Title of the presentation}
%% name of the authors
\author[]{My name}
%% put the name of the institute
\institute[]{Institute name}
%% I don't want date displayed
\date[]{}
%=====================================
% Document begins
%=====================================
\begin{document}
%=====================================
% TITLE
%=====================================
\begin{frame}
\titlepage
\end{frame}
\begin{frame}
\frametitle{Motivation}
Blah blah blah
\end{frame}
%=====================================
% Document ends
%=====================================
\end{document}
Thanks