MiTeX-beamer/example.tex

58 lines
1007 B
TeX

% !TeX spellcheck = hu_HU
% !TeX encoding = UTF-8
% !TeX program = xelatex
% képarányok: 43, 1609, 1610
\documentclass[mathserif,aspectratio=43]{beamer}
% magyar és english támogatott
\usepackage[magyar]{babel}
\mode<presentation>{}
\usetheme{mit}
% Címdia adatai
\title{Cím}
\author{Szerző1, Szerző2}
\date{Dátum}
%\newcommand{\supervisor}{Konzulens}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\section{Első fejezet}
\section{Második fejezet}
\begin{frame}
\tableofcontents
\end{frame}
\begin{frame}
\frametitle{Felsorolás és színek}
\colorbox{MITgray2}{\textbf{Színek}}\\
\textcolor{MITred}{MIT bordó}, \textcolor{MITgray1}{szürke 1}, \textcolor{MITgray2}{szürke 2}
\vskip1em
\colorbox{MITgray2}{\textbf{Felsorolás}}
\begin{itemize}
\item Első szint
\begin{itemize}
\item Második szint
\begin{itemize}
\item Harmadik szint
\end{itemize}
\end{itemize}
\end{itemize}
\end{frame}
\end{document}