\documentclass{beamer}
|
|
\usepackage{graphicx}
|
|
\usetheme{Madrid}
|
|
\usecolortheme{crane}
|
|
\title[Presentación]{Título de la presentación demasiado extenso para desplegarse correctamente}
|
|
\author[All]{Gerardo Marx, Homer J. Simpson, and Bart Simpson}
|
|
\setbeamercovered{transparent}
|
|
|
|
|
|
\begin{document}
|
|
\maketitle{}
|
|
|
|
\section{Agenda}
|
|
\begin{frame}{Agenda}
|
|
\tableofcontents
|
|
\end{frame}
|
|
|
|
|
|
\begin{frame}{Título}
|
|
|
|
\center
|
|
\includegraphics[width=2in]{example-image-a}
|
|
|
|
|
|
\begin{itemize}
|
|
\item Primer elemento: Algo de texto o descripción.
|
|
\item Segundo elemento
|
|
\end{itemize}
|
|
|
|
\end{frame}
|
|
|
|
|
|
|
|
\section{Columnas}
|
|
\subsection{Test}
|
|
|
|
\begin{frame}
|
|
\frametitle{Columnas y divisiones}
|
|
\begin{columns}
|
|
\column{0.5\textwidth}
|
|
|
|
\center
|
|
\includegraphics[width=\textwidth]{example-image-b}
|
|
|
|
|
|
\column{0.5\textwidth}
|
|
|
|
En la siguiente ecuación:
|
|
|
|
$$ E=mc^2$$
|
|
|
|
\end{columns}
|
|
\end{frame}
|
|
|
|
|
|
\begin{frame}{Overlays}
|
|
\center
|
|
\onslide<3>{
|
|
\includegraphics[width=2in]{example-image-a}
|
|
}
|
|
|
|
\begin{itemize}
|
|
\item<1-> Primer elemento: Algo de texto o descripción.
|
|
\item<2-> Segundo elemento
|
|
\end{itemize}
|
|
|
|
\end{frame}
|
|
|
|
|
|
\begin{frame}{Overlays continuación}
|
|
\begin{itemize}
|
|
\item<1-> \textbf<2>{Primer elemento: Algo de texto o descripción.}
|
|
\item<2-> Segundo elemento
|
|
\item<3-> \textcolor<3>{red}{Tercer elemento}
|
|
\end{itemize}
|
|
\end{frame}
|
|
|
|
\section{Blocks}
|
|
\begin{frame}{Bloques}
|
|
\begin{block}{Título del bloque}
|
|
Contenido del bloque
|
|
\end{block}
|
|
|
|
|
|
\begin{alertblock}{Título del bloque}
|
|
Contenido del bloque
|
|
\end{alertblock}
|
|
|
|
|
|
\begin{example}
|
|
Contenido del bloque
|
|
\end{example}
|
|
|
|
\begin{definition}
|
|
Contenido del bloque
|
|
\end{definition}
|
|
\end{frame}
|
|
|
|
%--------------
|
|
\begin{frame}{bloques continuación...}
|
|
\begin{theorem}[binomio]
|
|
$(a+b)^2=a^2+2ab+b^2$
|
|
\end{theorem}
|
|
|
|
|
|
\begin{corollary}
|
|
$(a+b)^2=(b+a)^2$
|
|
\end{corollary}
|
|
|
|
\begin{proof}
|
|
$(a+b)^2=(a+b)(a+b)=...$
|
|
\end{proof}
|
|
\end{frame}
|
|
|
|
|
|
%-------------
|
|
\begin{frame}[fragile]
|
|
|
|
\begin{semiverbatim}
|
|
\\begin
|
|
for i=1:2:100
|
|
x[i]=
|
|
\end{semiverbatim}
|
|
Como se sugiere en \cite{key1}
|
|
\end{frame}
|
|
|
|
|
|
|
|
\section{Notas y subtítulos}
|
|
|
|
\begin{frame}
|
|
\frametitle{Título}
|
|
\framesubtitle{Subtítulo}
|
|
Esto es algo de texto en el frame\footnote{Un frame es una diapositiva}
|
|
\end{frame}
|
|
|
|
|
|
\section{Referencias}
|
|
|
|
\begin{frame}{Referencias}
|
|
\begin{thebibliography}{5}
|
|
\setbeamertemplate{bibliography item}[text]
|
|
\bibitem{key1}
|
|
Homer J. Simpson, \textit{The Duh compilation}
|
|
|
|
\setbeamertemplate{bibliography item}[online]
|
|
\bibitem{key2}
|
|
Gerardo Marx, \textit{My title}
|
|
|
|
\setbeamertemplate{bibliography item}[article]
|
|
\bibitem{key1}
|
|
Homer J. Simpson, \textit{The Duh compilation}
|
|
|
|
\setbeamertemplate{bibliography item}[book]
|
|
\bibitem{key1}
|
|
Homer J. Simpson, \textit{The Duh compilation}
|
|
|
|
\setbeamertemplate{bibliography item}[triangle]
|
|
\bibitem{key1}
|
|
Homer J. Simpson, \textit{The Duh compilation}
|
|
|
|
\end{thebibliography}
|
|
\end{frame}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
\end{document}
|