Advertisement
Hirwanto

ampangbeamer

Jan 27th, 2015
662
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 1.81 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        %% 10 : 46
  7. %  Kompilasi  %% Default (PDFTeXify)
  8. %===============================================
  9. \documentclass[12pt]{beamer}
  10. %===============================================
  11. \usetheme{Ampang}
  12. \useoutertheme{sidebar}
  13.  
  14. \pdfinfo
  15. {
  16.  /Title       (Ampang Beamer)
  17.  /Creator     (Hirwanto)
  18.  /Author      (hirwan)
  19. }
  20.  
  21.  
  22. \title{Judul tulis disini}
  23. \subtitle{Sub judul tulis disini}
  24. \author{Nama penulis tulis disini}
  25. \date{23 Nopember 2014} % Tanggal tulis disini
  26.  
  27. \begin{document}
  28.  
  29. \frame{\titlepage}
  30.  
  31. \section{Pendahuluan}
  32. \begin{frame}
  33. \frametitle{A Frame}
  34. \framesubtitle{Bullet points}
  35. \begin{itemize}
  36. \item First thing
  37.     \begin{itemize}
  38.     \item small point
  39.     \item fine print
  40.     \end{itemize}
  41. \item Second thing
  42.     \begin{enumerate}
  43.     \item point 1
  44.     \end{enumerate}
  45. \item Third thing
  46.     \begin{description}
  47.     \item[Research] the scientific pursuit for knowledge
  48.     \end{description}
  49. \end{itemize}
  50. \end{frame}
  51.  
  52. \subsection{Text}
  53. \begin{frame}
  54. \frametitle{Another Frame}
  55. 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.
  56. \end{frame}
  57.  
  58. \subsection{Blocks}
  59. \begin{frame}
  60. \frametitle{Blocks}
  61. \begin{definition}[Greetings]
  62. Hello World
  63. \end{definition}
  64.  
  65. \begin{theorem}[Fermat's Last Theorem]
  66. $a^n + b^n = c^n, n \leq 2$
  67. \end{theorem}
  68.  
  69. \begin{alertblock}{Uh-oh.}
  70. By the pricking of my thumbs.
  71. \end{alertblock}
  72.  
  73. \begin{exampleblock}{Uh-oh.}
  74. Something evil this way comes.
  75. \end{exampleblock}
  76.  
  77. \end{frame}
  78. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement