%%Tema para beamer "Imunam", versión 1.0

\documentclass{beamer}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc} 
\usepackage[spanish]{babel} 
\graphicspath{ {images/} }


%% Logos de restaurantes:
\newcommand{\logomanekin}{images/logomanekin}

%%Se define el "environment" teorema
%% The "environment" theorem is defined
\newtheorem{Calcification}{Calcification} 


%%Tema de beamer "Imunam"
%% Theme of beamer "Imunam"
\usetheme[cuernavaca]{Imunam} 
%\usetheme{Imunam} 
%%Si se omite "[cuernavaca]" en éste comando, el logotipo se imprime sin la 
%%leyenda "Unidad Cuernavaca" en la parte inferior.
%% If "[cuernavaca]" is omitted in this command, the logo is printed without the
%% legend "Cuernavaca Unit" in the lower part.

\title{Poznan restaurants (for Erasmus)}
\author{Enrique Andrade Gonzalez %Nombre del autor % Author's name
	      \texttt{e.andrade@udc.es}} %email
	      
\date{Computer tools in mathematican's work} %subject

%\institute{Instituto de Matemáticas, unidad Cuernavaca} 
%%Instituto del ponenete, dado que el texto "Intituto de matemáticas" aparece
%%en el logo, parece redundante incluirlo además con éste comando.

\begin{document}

\begin{frame}

  \titlepage %Necesario para generar la portada
  
\end{frame}

%%La siguiente diapositiva es opcional, si se quiere la tabla de contenidos
%%Se sebe compilar dos veces el documento para que funcione
%--------------------------------------------------------------------------
\begin{frame}
\tableofcontents %Imprime la tabla de contenido
\end{frame}
%--------------------------------------------------------------------------

\section{Introduction} %%Título de la sección (Opcional)
\begin{frame}
  \frametitle{Introduction}
  \framesubtitle{objective} %%Subtítulo de la diapositiva (opcional)
  In this presentation the following restaurants in the city of Poznan are rated.

  \begin{itemize}
   %% \item[\checkmark] Un elemento en la lista %%[\checkmark] muestra una palomita al inicio de la línea
    \item Manekin.
    \item Bar a Boo.
    \item Piccolo Spaghetti Bar.
  \end{itemize}
\end{frame}

\section{How to qualify} %%Otra sección
\begin{frame}
    \frametitle{How are they qualified?}
    To qualify a restaurant, the following formula is used.
    \begin{Calcification} %%Uso del "environment" definido al inicio del documento.
        (Food + Service + Price)
    \end{Calcification}

    Each parameter will be evaluated with a score of 10.
    \\The minimum value being 0.
    \\Sienod the maximum value a 30.
\end{frame}


\section{Restaurants} %%Otra sección
\begin{frame}
    \frametitle{Manekin}
    \begin{figure}[h]
        \includegraphics[scale=0.20]{logomanekin}
    \end{figure}
    \begin{itemize}
        \item \textbf{Food:} 9.
        \item \textbf{Service:} 7.
        \item \textbf{Price:} 9.
    \end{itemize}
    
    \begin{center}
        \textbf{TOTAL:} 25.
    \end{center}
\end{frame}

%\section{Restaurants}
\begin{frame}
    \frametitle{Bar a Boo}
    \begin{figure}[h]
        \includegraphics[scale=0.10]{logobaraboo}
    \end{figure}
    \begin{itemize}
        \item \textbf{Food:} 7.
        \item \textbf{Service:} 5.
        \item \textbf{Price:} 8.
    \end{itemize}
    
    \begin{center}
        \textbf{TOTAL:} 20.
    \end{center}
\end{frame}


%\section{Restaurants} %%Otra sección
\begin{frame}
    \frametitle{Piccolo Spaghetti Bar}
    \begin{figure}[h]
        \includegraphics[scale=0.1]{logopiccolo}
    \end{figure}
    \begin{itemize}
        \item \textbf{Food:} 8.
        \item \textbf{Service:} 9.
        \item \textbf{Price:} 7.
    \end{itemize}
    
    \begin{center}
        \textbf{TOTAL:} 24.
    \end{center}
\end{frame}


\section{Last conclusions} %%Otra sección
\begin{frame}
    \frametitle{Last conclusions}
    The \textbf{best restaurant for Erasmus students} is the \textbf{Manekin} with a score of \textbf{25 points}, followed very closely by the \textbf{Piccolo Spaghetti Bar} with \textbf{24 points}. Finally, with a more notable difference the \textbf{Bar to Boo}, with \textbf{20 points}.
\end{frame}

\end{document}