Advertisement
Hirwanto

airbeamer

Jan 27th, 2015
577
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 2.13 KB | None | 0 0
  1. %===============================================
  2. % Dokumen ini dibuat/diubah oleh
  3. %  Nama       %% Hirwanto
  4. %  Email      %% hirwanto.iwan@yahoo.com
  5. %  Tanggal    %% 28 Januari 2015
  6. %  Jam        %% 5 :33
  7. %  Kompilasi  %% PDFLaTeX ( dvi--> ps--> pdf)
  8. %===============================================
  9. \documentclass[12pt]{beamer}
  10. %===============================================
  11. \usetheme{Air}
  12. \usepackage{thumbpdf}
  13. \usepackage{wasysym}
  14. \usepackage{ucs}
  15. \usepackage[utf8]{inputenc}
  16. \usepackage{pgf,pgfarrows,pgfnodes,pgfautomata,pgfheaps,pgfshade}
  17. \usepackage{verbatim}
  18. %================================================
  19. \pdfinfo
  20. {
  21.  /Title       (Dr. LaTeX Beamer)
  22.  /Creator     (TeX)
  23.  /Author      (Konqi Konqueror)
  24. }
  25.  
  26.  
  27. \title{Air Beamer }
  28. \subtitle{Beamer Presentasi ini dibuat oleh Konqi Konqueror}
  29. \author{diedit oleh Hirwanto}
  30. \date{23 Nopember 2014}
  31. %==========================================================
  32. \begin{document}
  33.  
  34. \frame{\titlepage}
  35.  
  36. \section{Pendahuluan}
  37. % frame baru/halaman presentasi baru
  38. \begin{frame}
  39. \frametitle{A Frame}
  40. \framesubtitle{Bullet points}
  41. \begin{itemize}
  42. \item First thing
  43.     \begin{itemize}
  44.     \item small point
  45.     \item fine print
  46.     \end{itemize}
  47. \item Second thing
  48.     \begin{enumerate}
  49.     \item point 1
  50.     \end{enumerate}
  51. \item Third thing
  52.     \begin{description}
  53.     \item[Research] the scientific pursuit for knowledge
  54.     \end{description}
  55. \end{itemize}
  56. \end{frame}
  57. % akhir halaman presentasi
  58. \subsection{Text}
  59. \begin{frame}
  60. \frametitle{Another Frame}
  61. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
  62. \end{frame}
  63.  
  64. \subsection{Blocks}
  65. \begin{frame}
  66. \frametitle{Blocks}
  67. \begin{definition}[Greetings]
  68. Hello World
  69. \end{definition}
  70.  
  71. \begin{theorem}[Fermat's Last Theorem]
  72. $a^n + b^n = c^n, n \leq 2$
  73. \end{theorem}
  74.  
  75. \begin{alertblock}{Uh-oh.}
  76. By the pricking of my thumbs.
  77. \end{alertblock}
  78.  
  79. \begin{exampleblock}{Uh-oh.}
  80. Something evil this way comes.
  81. \end{exampleblock}
  82.  
  83. \end{frame}
  84. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement