31 lines
471 B
TeX
31 lines
471 B
TeX
|
|
||
|
\documentclass[aspectratio=169]{beamer} % modo presentacion
|
||
|
\input{config/Beamer.tex}
|
||
|
|
||
|
\subtitle{Subtitulo de la presentación}
|
||
|
\title{Título de la presentación} % Opcional
|
||
|
|
||
|
|
||
|
\begin{document}
|
||
|
|
||
|
\begin{frame}
|
||
|
\titlepage
|
||
|
\end{frame}
|
||
|
|
||
|
%\input{Inicializacion}
|
||
|
%\input{SistemaOperativo}
|
||
|
|
||
|
|
||
|
\begin{frame}
|
||
|
\frametitle{Título de la diapositiva}
|
||
|
|
||
|
\begin{block}{Título del bloque}
|
||
|
Contenido del bloque.
|
||
|
\end{block}
|
||
|
|
||
|
\end{frame}
|
||
|
|
||
|
|
||
|
\end{document}
|
||
|
|