generated from b201lab/template-buku-ta-its
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.tex
200 lines (160 loc) · 4.88 KB
/
main.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
% Judul dokumen
\title{Buku Tugas Akhir ITS}
\author{Musk, Elon Reeve}
% Pengaturan ukuran teks dan bentuk halaman dua sisi
\documentclass[12pt,twoside]{report}
% Pengaturan ukuran halaman dan margin
\usepackage[a4paper,top=30mm,left=30mm,right=20mm,bottom=25mm]{geometry}
% Pengaturan ukuran spasi
\usepackage[singlespacing]{setspace}
% Pengaturan format bahasa
\usepackage[indonesian]{babel}
% Pengaturan detail pada file PDF
\usepackage[pdfauthor={\@author},bookmarksnumbered,pdfborder={0 0 0}]{hyperref}
% Pengaturan jenis karakter
\usepackage[utf8]{inputenc}
% Pengaturan pewarnaan
\usepackage[table,xcdraw]{xcolor}
% Pengaturan kutipan artikel
\usepackage{natbib}
% Package lainnya
\usepackage{changepage}
\usepackage{enumitem}
\usepackage{eso-pic}
\usepackage{etoolbox}
\usepackage{graphicx}
\usepackage{lipsum}
\usepackage{lmodern}
\usepackage{longtable}
\usepackage{tabularx}
\usepackage{wrapfig}
% Definisi untuk "Hati ini sengaja dikosongkan"
\patchcmd{\cleardoublepage}{\hbox{}}{
\thispagestyle{empty}
\vspace*{\fill}
\begin{center}\textit{[Halaman ini sengaja dikosongkan]}\end{center}
\vfill}{}{}
% Pengaturan penomoran halaman
\usepackage{fancyhdr}
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\pagestyle{fancy}
\fancyfoot[LE,RO]{\thepage}
\patchcmd{\chapter}{plain}{fancy}{}{}
\patchcmd{\chapter}{empty}{plain}{}{}
% Pengaturan format judul bab
\usepackage{titlesec}
\titleformat{\chapter}[display]{\bfseries\Large}{BAB \centering\Roman{chapter}}{0ex}{\vspace{0ex}\centering}
\titleformat{\section}{\bfseries\large}{\MakeUppercase{\thesection}}{1ex}{\vspace{1ex}}
\titleformat{\subsection}{\bfseries\large}{\MakeUppercase{\thesubsection}}{1ex}{}
\titleformat{\subsubsection}{\bfseries\large}{\MakeUppercase{\thesubsubsection}}{1ex}{}
\titlespacing{\chapter}{0ex}{0ex}{4ex}
\titlespacing{\section}{0ex}{1ex}{0ex}
\titlespacing{\subsection}{0ex}{0.5ex}{0ex}
\titlespacing{\subsubsection}{0ex}{0.5ex}{0ex}
% Pengaturan format potongan kode
\usepackage{listings}
\definecolor{comment}{RGB}{0,128,0}
\definecolor{string}{RGB}{255,0,0}
\definecolor{keyword}{RGB}{0,0,255}
\lstdefinestyle{codestyle}{
commentstyle=\color{comment},
stringstyle=\color{string},
keywordstyle=\color{keyword},
basicstyle=\footnotesize\ttfamily,
numbers=left,
numberstyle=\tiny,
numbersep=5pt,
frame=lines,
breaklines=true,
prebreak=\raisebox{0ex}[0ex][0ex]{\ensuremath{\hookleftarrow}},
showstringspaces=false,
upquote=true,
tabsize=2,
}
\lstset{style=codestyle}
% Isi keseluruhan dokumen
\begin{document}
% Sampul luar Bahasa Indonesia
\newcommand\covercontents{sampul/konten-id.tex}
\input{sampul/sampul-luar.tex}
% Atur ulang penomoran halaman
\setcounter{page}{1}
% Sampul dalam Bahasa Indonesia
\renewcommand\covercontents{sampul/konten-id.tex}
\input{sampul/sampul-dalam.tex}
\clearpage
\cleardoublepage
% Sampul dalam Bahasa Inggris
\renewcommand\covercontents{sampul/konten-en.tex}
\input{sampul/sampul-dalam.tex}
\cleardoublepage
% Pengaturan ukuran indentasi paragraf
\setlength{\parindent}{2em}
% Pengaturan ukuran spasi paragraf
\setlength{\parskip}{1ex}
% Lembar pengesahan
\input{lainnya/lembar-pengesahan.tex}
\cleardoublepage
\input{lainnya/lembar-pengesahan-en.tex}
\cleardoublepage
% Pernyataan keaslian
\input{lainnya/pernyataan-keaslian.tex}
\cleardoublepage
\input{lainnya/pernyataan-keaslian-en.tex}
\cleardoublepage
% Nomor halaman pembuka dimulai dari sini
\pagenumbering{roman}
% Abstrak Bahasa Indonesia
\input{abstrak/abstrak-id.tex}
\cleardoublepage
% Abstrak Bahasa Inggris
\input{abstrak/abstrak-en.tex}
\cleardoublepage
% Kata pengantar
\input{lainnya/kata-pengantar.tex}
\cleardoublepage
% Daftar isi
\renewcommand*\contentsname{DAFTAR ISI}
\addcontentsline{toc}{chapter}{\contentsname}
\tableofcontents
\cleardoublepage
% Daftar gambar
\renewcommand*\listfigurename{DAFTAR GAMBAR}
\addcontentsline{toc}{chapter}{\listfigurename}
\listoffigures
\cleardoublepage
% Daftar tabel
\renewcommand*\listtablename{DAFTAR TABEL}
\addcontentsline{toc}{chapter}{\listtablename}
\listoftables
\cleardoublepage
% Nomor halaman isi dimulai dari sini
\pagenumbering{arabic}
% Bab 1 pendahuluan
\input{bab/1-pendahuluan.tex}
\cleardoublepage
% Bab 2 tinjauan pustaka
\input{bab/2-tinjauan-pustaka.tex}
\cleardoublepage
% Bab 3 desain dan implementasi
\input{bab/3-desain-implementasi.tex}
\cleardoublepage
% Bab 4 pengujian dan analisis
\input{bab/4-pengujian-analisis.tex}
\cleardoublepage
% Bab 5 penutup
\input{bab/5-penutup.tex}
\cleardoublepage
% Daftar pustaka
\renewcommand\bibname{DAFTAR PUSTAKA}
\addcontentsline{toc}{chapter}{\bibname}
% alternatif
% \bibliographystyle{apa}
\bibliographystyle{apacite}
\bibliography{pustaka/pustaka.bib}
\cleardoublepage
% Biografi penulis
\input{lainnya/biografi-penulis.tex}
\cleardoublepage
\end{document}