Advertisement
kalakay

Contoh Dokumen

Sep 25th, 2017
1,386
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 1.42 KB | None | 0 0
  1. \documentclass[10pt]{article}
  2. \usepackage[a4paper,margin=2cm]{geometry}
  3. %---------------------------halaman judul (titlepage)
  4. \title{Contoh Dokumen}
  5. \author{Sulaeman, S.Pd.}
  6. \date{\today}
  7. %-----------------------------------------------------
  8. \usepackage{graphicx}%untuk memuat gambar
  9. \usepackage[hypcap=false]{caption}%untuk keterangan gambar/tabel
  10. \usepackage[colorlinks,link color=blue]{hyperref}%untuk penautan (link)
  11.  
  12. \usepackage{newcent}%jenis huruf
  13. \usepackage{lipsum}%untuk contoh teks/paragraf
  14. \parindent0em%untuk naskah tanpa indentasi
  15.  
  16. \begin{document}
  17.  
  18.  
  19. \maketitle%mencetak halaman judul
  20. \thispagestyle{empty}%halaman judul tak bernomor
  21. \tableofcontents%mencetak daftar isi
  22.  
  23. \newpage
  24.  
  25. \begin{abstract}
  26. \lipsum[66]
  27. \end{abstract}
  28.  
  29. \section{Satu}
  30. \lipsum[75]
  31. \begin{table}[!ht]
  32.    \centering
  33.    \begin{tabular}{|c|c|}\hline
  34.      Kolom 1   & Kolom 2 \\\hline
  35.       Satu  & Dua \\\hline
  36.    \end{tabular}
  37.    \caption{Contoh Tabel}
  38.    \label{tab:contohtabel}
  39. \end{table}
  40.  
  41. \section{Dua}
  42. \lipsum[66]
  43. \begin{center}
  44. \includegraphics[scale=.15]{logo}
  45. \captionof{figure}{Contoh Gambar}
  46. \end{center}
  47.  
  48. \begin{thebibliography}{7}
  49. \bibitem{Hos14}
  50. Hosnan. 2014. \emph{Pendekatan Saintifik dan Kontekstual dalam Pembelajaran Abad 21}. Bogor: Ghalia Indonesia.
  51. \bibitem{Hadley}
  52. Hadley G. 1977. \emph{Linear Algebra}. Canada: Addison-Wesley Publishing Company Inc.
  53. \end{thebibliography}
  54.  
  55. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement