Membuat slide presentasi menggunakan LaTeX bukan hal yang sulit. Berikut ini saya berikan template yang bisa anda reuse dengan mengganti bagian-bagiannya. Penjelasan saya letakkan langsung di komentar (diawali dengan %). Slide di Beamer disebut dengan Frame. Frame ini bisa hanya satu slide saja atau bisa juga lebih dari satu slide (misalnya di contoh ini adalah di bagian "Outline" / "Table of Contents"). Pada template ini, saya tuliskan banyak frame dengan tujuan untuk contoh outline yang melebihi satu lembar tersebut, isi tidak penting (setidaknya di artikel ini :-D). Outline berisi semua yang didefinisikan di \section dan \subsection. Tiap \section berisi frame ataupun \subsection. Tiap \subsection bisa berisi satu atau lebih frame.
\documentclass{beamer} \usepackage[latin1]{inputenc} % tema. warna dan font utk tema juga bisa diatur \usetheme{Warsaw} \usecolortheme{beetle} \usefonttheme{professionalfonts} % bagian definisi judul \title[Comprehensive Examination for Ph.D Research Proposal]{A Web Engineering Methodology and Software Framework for Building Pragmatic Web Application}\author{Bambang Purnomosidi D. P. \\ 10/306654/STK/00301}\institute{STMIK AKAKOM}\date{\today} % awal presentasi \begin{document} % frame pertama: judul \begin{frame} \titlepage \end{frame} % daftar isi presentasi. lebih dari satu slide. % slide pertama: Outline I, slide kedua: Outline II, dst \begin{frame}[allowframebreaks]{Outline} \frametitle{Outline} \tableofcontents \end{frame} % mulai bagian ini akan berisi "daftar isi" atau "ouline". % daftar isi terdiri dari yang tertulis di \section dan \subsection % lihat di hasil tampilan \section{Introduction} % isi slide hanya "aaa". :)) \subsection{Background} \begin{frame} \frametitle{Web Application} aaa \end{frame} \begin{frame} \frametitle{Web Interaction Patterns} aaa \end{frame} \begin{frame} \frametitle{The Web: Syntactic, Semantic, and Pragmatic} aaa \end{frame} \subsection{Rationale and Motivating Factors} \begin{frame} \frametitle{Rationale and Motivating Factors} aaa \end{frame} \subsection{Problem Formulation and Scope of Problems} \begin{frame} \frametitle{Problem Formulation and Scope of Problems} aaa \end{frame} \subsection{Research Novelty} \begin{frame} \frametitle{Research Novelty} aaa \end{frame} \subsection{Research Contributions} \begin{frame} \frametitle{Research Contributions} aaa \end{frame} \subsection{Future Directions} \begin{frame} \frametitle{Future Directions} aaa \end{frame} \section{Literature Review and Theoretical Foundation} \subsection{Literature Review} \begin{frame} \frametitle{Reference Model and Reference Architecture} aaa \end{frame} \subsection{Web Engineering Methodology and Tool Support} \begin{frame} \frametitle{Web Engineering Methodology and Tool Support} aaa \end{frame} \subsection{Semiotics and Web} \begin{frame} \frametitle{Semiotics and Web} aaa \end{frame} \subsection{Theoretical Foundation} \begin{frame} \frametitle{Ontology} aaa \end{frame} \begin{frame} \frametitle{Semantic Web: Standards and Specifications} aaa \end{frame} \begin{frame} \frametitle{Research Questions} aaa \end{frame} \section{Research Methodology} \subsection{Research Methods} \begin{frame} \frametitle{Research Methods} aaa \end{frame} \subsection{Case Study} \begin{frame} \frametitle{Case Study} aaa \end{frame} \section{Pilot Study} \begin{frame} \frametitle{Pilot Study} aaa \end{frame} \section{Research Schedule} \begin{frame} \frametitle{Research Schedule} aaa \end{frame} \section{Appendices} \subsection{Resources} \begin{frame} \frametitle{Resources} aaa \end{frame} \subsection{Publication Plan} \begin{frame} \frametitle{Publication Plan} aaa \end{frame} \end{document}
Perhatikan hasil berikut ini:
Halaman Judul
Daftar Isi / Outline
Outline I
Outline II
Tampilan slide dengan bagian atas sebagai navigasi
Navigasi di PDF Viewer
Happy presenting!
Thank you pak/bu atas ilmunya
BalasHapus