-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
179 lines (145 loc) · 4.75 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
% Pengaturan ukuran teks dan bentuk halaman dua sisi
\documentclass[10pt,twoside]{report}
% Pengaturan ukuran halaman dan margin
\usepackage[a5paper,top=25mm,left=25mm,right=20mm,bottom=25mm]{geometry}
% Pengaturan ukuran spasi
\usepackage[singlespacing]{setspace}
% Judul dokumen
\title{Buku Laporan Kerja Praktik ITS}
\author{Musk, Elon Reeve \and Kjellberg, Felix Arvid Ulf}
% 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 ukuran indentasi paragraf
\setlength{\parindent}{2em}
% Pengaturan ukuran spasi paragraf
\setlength{\parskip}{0.5ex}
% Package lainnya
\usepackage{etoolbox} % Mengubah fungsi default
\usepackage{enumitem} % Pembuatan list
\usepackage{lipsum} % Pembuatan template kalimat
\usepackage{graphicx} % Input gambar
\usepackage{longtable} % Pembuatan tabel
\usepackage[table,xcdraw]{xcolor} % Pewarnaan tabel
\usepackage[numbers]{natbib} % Kutipan artikel
\usepackage{eso-pic} % Pembuatan background
\usepackage{changepage} % Pembuatan teks kolom
\usepackage{wrapfig} % Wrapping gambar
% Definisi untuk "Hati ini sengaja dikosongkan"
\def\kosong{
\vspace*{\fill}
\begin{center}\textit{Halaman ini sengaja dikosongkan}\end{center}
\vfill
}
\patchcmd{\cleardoublepage}{\hbox{}}{\kosong}{}{}
% Pengaturan penomoran halaman
\usepackage{fancyhdr}
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\pagestyle{fancy}
\fancyfoot[CE,CO]{\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}[\vspace{2ex}]
\titleformat{\section}{\bfseries\large}{\MakeUppercase{\thesection}}{1ex}{}
\titleformat{\subsection}{\bfseries\large}{\MakeUppercase{\thesubsection}}{1ex}{}
\titleformat{\subsubsection}{\bfseries\large}{\MakeUppercase{\thesubsubsection}}{1ex}{}
\titlespacing{\chapter}{0ex}{0ex}{2ex}
\titlespacing{\section}{0ex}{2ex}{1ex}
\titlespacing{\subsection}{0ex}{1ex}{0.5ex}
\titlespacing{\subsubsection}{0ex}{1ex}{0.5ex}
% Pengaturan persamaan
\newenvironment{conditions}
{\par\vspace{\abovedisplayskip}\noindent
\tabularx{\columnwidth}{>{$}l<{$} @{${}={}$} >{\raggedright\arraybackslash}X}}
{\endtabularx\par\vspace{\belowdisplayskip}}
% Pengaturan format baris program
\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}
% Nomor halaman pembuka dimulai dari sini
\pagenumbering{roman}
% Sampul luar
\input{sampul/sampul-luar.tex}
\cleardoublepage
% Sampul dalam
\input{sampul/sampul-dalam.tex}
\cleardoublepage
% Lembar pengesahaan untuk departemen
\input{pengesahan/pengesahan-departemen.tex}
\cleardoublepage
% Lembar pengesahan untuk perusahaan
\input{pengesahan/pengesahan-perusahaan.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 profil perusahaan
\input{bab/2-profil-perusahaan.tex}
\cleardoublepage
% Bab 3 tunjauan pustaka
\input{bab/3-tinjauan-pustaka.tex}
\cleardoublepage
% Bab 4 desain dan implementasi
\input{bab/4-desain-implementasi.tex}
\cleardoublepage
% Bab 5 pengujian dan evaluasi
\input{bab/5-pengujian-evaluasi.tex}
\cleardoublepage
% Bab 6 kesimpulan dan saran
\input{bab/6-kesimpulan-saran.tex}
\cleardoublepage
% Daftar pustaka
\renewcommand\bibname{DAFTAR PUSTAKA}
\addcontentsline{toc}{chapter}{\bibname}
\bibliographystyle{unsrtnat}
\bibliography{pustaka/pustaka.bib}
\cleardoublepage
% Biografi penulis
\input{lainnya/biografi-penulis.tex}
\cleardoublepage
\end{document}