Latex course for IAS IEEE branch
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

186 lines
2.8 KiB

  1. \documentclass{beamer}
  2. \usepackage{graphicx}
  3. \usetheme{Madrid}
  4. \usecolortheme{crane}
  5. \title[Presentación]{Título de la presentación demasiado extenso para desplegarse correctamente}
  6. \author[All]{Gerardo Marx, Homer J. Simpson, and Bart Simpson}
  7. \setbeamercovered{transparent}
  8. \begin{document}
  9. \maketitle{}
  10. \section{Agenda}
  11. \begin{frame}{Agenda}
  12. \tableofcontents
  13. \end{frame}
  14. \begin{frame}{Título}
  15. \center
  16. \includegraphics[width=2in]{example-image-a}
  17. \begin{itemize}
  18. \item Primer elemento: Algo de texto o descripción.
  19. \item Segundo elemento
  20. \end{itemize}
  21. \end{frame}
  22. \section{Columnas}
  23. \subsection{Test}
  24. \begin{frame}
  25. \frametitle{Columnas y divisiones}
  26. \begin{columns}
  27. \column{0.5\textwidth}
  28. \center
  29. \includegraphics[width=\textwidth]{example-image-b}
  30. \column{0.5\textwidth}
  31. En la siguiente ecuación:
  32. $$ E=mc^2$$
  33. \end{columns}
  34. \end{frame}
  35. \begin{frame}{Overlays}
  36. \center
  37. \onslide<3>{
  38. \includegraphics[width=2in]{example-image-a}
  39. }
  40. \begin{itemize}
  41. \item<1-> Primer elemento: Algo de texto o descripción.
  42. \item<2-> Segundo elemento
  43. \end{itemize}
  44. \end{frame}
  45. \begin{frame}{Overlays continuación}
  46. \begin{itemize}
  47. \item<1-> \textbf<2>{Primer elemento: Algo de texto o descripción.}
  48. \item<2-> Segundo elemento
  49. \item<3-> \textcolor<3>{red}{Tercer elemento}
  50. \end{itemize}
  51. \end{frame}
  52. \section{Blocks}
  53. \begin{frame}{Bloques}
  54. \begin{block}{Título del bloque}
  55. Contenido del bloque
  56. \end{block}
  57. \begin{alertblock}{Título del bloque}
  58. Contenido del bloque
  59. \end{alertblock}
  60. \begin{example}
  61. Contenido del bloque
  62. \end{example}
  63. \begin{definition}
  64. Contenido del bloque
  65. \end{definition}
  66. \end{frame}
  67. %--------------
  68. \begin{frame}{bloques continuación...}
  69. \begin{theorem}[binomio]
  70. $(a+b)^2=a^2+2ab+b^2$
  71. \end{theorem}
  72. \begin{corollary}
  73. $(a+b)^2=(b+a)^2$
  74. \end{corollary}
  75. \begin{proof}
  76. $(a+b)^2=(a+b)(a+b)=...$
  77. \end{proof}
  78. \end{frame}
  79. %-------------
  80. \begin{frame}[fragile]
  81. \begin{semiverbatim}
  82. \\begin
  83. for i=1:2:100
  84. x[i]=
  85. \end{semiverbatim}
  86. Como se sugiere en \cite{key1}
  87. \end{frame}
  88. \section{Notas y subtítulos}
  89. \begin{frame}
  90. \frametitle{Título}
  91. \framesubtitle{Subtítulo}
  92. Esto es algo de texto en el frame\footnote{Un frame es una diapositiva}
  93. \end{frame}
  94. \section{Referencias}
  95. \begin{frame}{Referencias}
  96. \begin{thebibliography}{5}
  97. \setbeamertemplate{bibliography item}[text]
  98. \bibitem{key1}
  99. Homer J. Simpson, \textit{The Duh compilation}
  100. \setbeamertemplate{bibliography item}[online]
  101. \bibitem{key2}
  102. Gerardo Marx, \textit{My title}
  103. \setbeamertemplate{bibliography item}[article]
  104. \bibitem{key1}
  105. Homer J. Simpson, \textit{The Duh compilation}
  106. \setbeamertemplate{bibliography item}[book]
  107. \bibitem{key1}
  108. Homer J. Simpson, \textit{The Duh compilation}
  109. \setbeamertemplate{bibliography item}[triangle]
  110. \bibitem{key1}
  111. Homer J. Simpson, \textit{The Duh compilation}
  112. \end{thebibliography}
  113. \end{frame}
  114. \end{document}