\documentclass{beamer}
\usetheme{CENIDETDIE}
\setbeamertemplate{caption}[numbered]
\usefonttheme[onlymath]{serif}
% ------------------------------------------------------------------------------------------------
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{helvet}
\usepackage{graphicx} % Allows including images
\usepackage{booktabs} % Allows the use of \toprule, \midrule and \bottomrule in tables
\numberwithin{figure}{section}
\numberwithin{equation}{section}
\usepackage{natbib}
% ------------------------------------------------------------------------------------------------
\title{Unofficial template for CENIDET-DIE}
\subtitle{Presentation in Beamer-\LaTeX}
\author{J.E. Solís-Pérez}
\date{\today}
\institute{\url{jesolis@cenidet.edu.mx}}
% ------------------------------------------------------------------------------------------------
\begin{document}
% ------------------------------------------------------------------------------------------------
\begin{frame}[plain,t]
\titlepage
\end{frame}
% ------------------------------------------------------------------------------------------------
\begin{frame}[plain,noframenumbering]
\addtocounter{framenumber}{-1}
\scriptsize
% \thispagestyle{empty}
\frametitle{Contenido}
\setbeamertemplate{section in toc}[sections numbered]
\tableofcontents[hideallsubsections]
\end{frame}
% ------------------------------------------------------------------------------------------------
\section{Introduction}
\begin{frame}
\frametitle{Introduction}
\begin{itemize}
\item Item A
\item Item B
\begin{itemize}
\item Subitem 1
\item Subitem 2
\end{itemize}
\item Item C
\begin{enumerate}
\item Subitem 1
\item Subitem 2
\end{enumerate}
\end{itemize}
\end{frame}
% ------------------------------------------------------------------------------------------------
\section{Text}
\begin{frame}
\frametitle{Text}
Sed iaculis dapibus gravida. Morbi sed tortor erat, nec interdum arcu.
Sed id lorem lectus. Quisque viverra augue id sem ornare non aliquam nibh tristique. Aenean in ligula nisl. Nulla sed tellus ipsum. Donec estibulum
ligula non lorem vulputate fermentum accumsan neque mollis. \\~\\
\end{frame}
% ------------------------------------------------------------------------------------------------
\section{Blocks}
\begin{frame}
\frametitle{Blocks of Highlighted Text}
\begin{block}{Single block}
May your beer be laid under an enchantment of surpassing excellence for seven years!
\end{block}
\begin{alertblock}{Alert block}
Memory is not what the heart desires. That is only a mirror.
\end{alertblock}
\begin{exampleblock}{Example block}
Be Bold, but Wary! Keep up your merry hears, and ride to meet your fortune!
\end{exampleblock}
\end{frame}
\subsection{Another blocks}
\begin{frame}
\frametitle{Another blocks}
\begin{definition}[Derivative]
The \textbf{derivative of $f(x)$ with respect to $x$} is the function $f'(x)$ and is defined as
\begin{equation}
\label{eqn:definitionDerivative}
f'(x) = \lim_{h \to 0} \frac{f(x+h) - f(x)}{h}
\end{equation}
\end{definition}
\begin{theorem}[Mass--energy equivalence]
\begin{equation}
E = mc^2
\end{equation}
\end{theorem}
\end{frame}
% ------------------------------------------------------------------------------------------------
\section{Columns}
\begin{frame}
\frametitle{Multiple Columns}
\begin{columns}[c] % The "c" option specifies centered vertical alignment while the "t" option is used for top vertical alignment
\column{.45\textwidth} % Left column and width
\textbf{Heading}
\begin{enumerate}
\item Statement
\item Explanation
\item Example
\end{enumerate}
\column{.5\textwidth} % Right column and width
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer lectus nisl, ultricies in feugiat rutrum, porttitor sit amet augue. Aliquam ut tortor mauris. Sed volutpat ante purus, quis accumsan dolor.
\end{columns}
\end{frame}
% ------------------------------------------------------------------------------------------------
\section{Table}
\begin{frame}
\frametitle{Table}
\centering
\begin{table}
\caption{Table caption}
\label{tab:tabla1}
\begin{tabular}{lll}
\toprule
\textbf{Controller} & \textbf{ITAE} & \textbf{ISE}\\ \midrule
P & 0.3262 & 0.562 \\
PD & 0.1568 & 0.910 \\
PID & 0.9271 & 0.296 \\
\bottomrule
\end{tabular}
\end{table}
\end{frame}
% ------------------------------------------------------------------------------------------------
\section{Figure}
\begin{frame}
\frametitle{Figure}
\begin{figure}
\centering
\includegraphics[width=\textwidth]{pictures/example}
\caption{Figure caption}
\label{fig:example}
\end{figure}
\end{frame}
% ------------------------------------------------------------------------------------------------
\begin{frame}[fragile] % Need to use the fragile option when verbatim is used in the slide
\frametitle{Citation}
An example of the \verb|\citep| command to cite within the presentation:\\~
This statement requires citation \citep{skogestad2003simple}.
\end{frame}
% ------------------------------------------------------------------------------------------------
\begin{frame}[allowframebreaks]{References}
\setbeamertemplate{bibliography item}[text]
\bibliographystyle{apalike}
\bibliography{references.bib}{}
\end{frame}
% ------------------------------------------------------------------------------------------------
\ThankYouFrame
% ------------------------------------------------------------------------------------------------
\end{document}