
Beamer template using IESEG style and logo

\documentclass{beamer}
% IÉSEG School of Management colors
\definecolor{ieseg_blue}{RGB}{0, 43, 127}
\definecolor{ieseg_light_blue}{RGB}{0, 141, 213}
\definecolor{ieseg_yellow}{RGB}{ 255, 215, 0}
% Define the IÉSEG School of Management beamer theme
\usetheme{default}
\usecolortheme{default}
\useoutertheme{default}
\useinnertheme{default}
% Set the colors for the IÉSEG School of Management beamer theme
\setbeamercolor{title}{fg=ieseg_blue}
\setbeamercolor{frametitle}{fg=ieseg_blue,bg=ieseg_yellow}
\setbeamercolor{structure}{fg=ieseg_blue}
\setbeamercolor{text}{fg=ieseg_blue}
\setbeamercolor{normal text}{fg=ieseg_blue}
% Customize the footer with the IÉSEG School of Management logo, page numbers, and section navigation
\usepackage{appendixnumberbeamer}
\setbeamertemplate{footline}{%
  \leavevmode%
  \hbox{%
  \begin{beamercolorbox}[wd=.25\paperwidth,ht=2.5ex,dp=1.125ex]{structure}%
    \hspace*{1em}\includegraphics[height=12ex]{ieseg_logo.jpg}
  \end{beamercolorbox}%
  \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{structure}%
    \hspace*{0ex}\insertsectionnavigationhorizontal{0.5\paperwidth}{\hskip0pt}{\hskip0pt}\hspace*{2ex}
  \end{beamercolorbox}%
  \begin{beamercolorbox}[wd=.25\paperwidth,ht=2.5ex,dp=1.125ex,right]{structure}%
    \insertframenumber{} / \inserttotalframenumber\hspace*{1ex}
  \end{beamercolorbox}}%
  \vskip0pt%
}
% Section page template
% Creates a separating slide at the start of each section
% Comment this block if you do not want to have seperating slides between each section
\AtBeginSection[]{
  \setbeamercolor{background canvas}{bg=ieseg_blue}
  \setbeamercolor{section title}{fg=white}
  \begin{frame}[plain]
    \setbeamerfont{section title}{size=\Huge}
    \begin{centering}
      \begin{beamercolorbox}[sep=12pt,center]{section title}
        \Large\usebeamerfont{section title}\insertsectionhead\par
      \end{beamercolorbox}
    \end{centering}
  \end{frame}
  \setbeamercolor{background canvas}{bg=white}
  \setbeamercolor{section title}{fg=ieseg_blue}
}
% Define the table of content
% Make sections numbered in the table of content
\setbeamertemplate{section in toc}[sections numbered] % Comment this line if sections should not be numbered
% Make subsections numbered in the table of content
\setbeamertemplate{subsection in toc}[subsections numbered] % Comment this line if subections should not be numbered
% Define the title page
\title{\LaTeX beamer template for IESEG - School of Management}
\author{Nico André Schmid}
\date{\today}
\begin{document}
% Title slide
\begin{frame}
  \titlepage
\end{frame}
% Table of content slide
% Comment this block if you do not want to provide a table of content
\begin{frame}{Outline}
  \tableofcontents
\end{frame}
% Section 1: Introduction
\section{Introduction}
% Slide 1.1: Introduction slide
\begin{frame}{Introduction}
  \begin{itemize}
    \item Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    \item Nullam sit amet semper risus.
    \item Vivamus ac turpis nec lectus eleifend dapibus.
  \end{itemize}
\end{frame}
% Section 2: Background
\section{Background}
% Slide 2.1: Background slide
\begin{frame}{Background}
  \begin{itemize}
    \item Fusce euismod condimentum ipsum, sit amet tincidunt lectus congue id.
    \item Sed ut purus vel velit dignissim condimentum a ut dolor.
    \item Aenean tristique libero nec ante ultrices venenatis.
  \end{itemize}
\end{frame}
% Section 3: Conclusion
\section{Conclusion}
% Slide 3.1: Conclusion slide
\begin{frame}{Conclusion}
  \begin{itemize}
    \item Phasellus sed rhoncus eros, vel molestie mi.
    \item Proin ac congue ex.
    \item Nam a elit vel elit imperdiet bibendum sit amet in urna.
  \end{itemize}
\end{frame}
\end{document}