-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
106 lines (94 loc) · 3.28 KB
/
thesis.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
%--------------------------------------------------------------------%
% REV01: Fri 23 Jul 2021 20:08:29 WIB (RMS)
% Berkas utama templat LaTeX.
% author Petra Barus, Peb Ruswono Aryan
%--------------------------------------------------------------------%
% Berkas ini berisi struktur utama dokumen LaTeX yang akan dibuat.
%--------------------------------------------------------------------%
\documentclass[11pt, a4paper, onecolumn, oneside, final]{book}
\input{if-itb-thesis.sty}
\makeatletter
\makeatother
%\bibliography{references}
\begin{document}
%Basic configuration
%\title{Pengembangan Aplikasi Pengumpulan Data Menggunakan \textit{Spreadsheet}}
\title{Pengembangan Kakas Pengumpulan Data dalam Format \textit{Spreadsheet}}
\date{}
\author{
Feryandi Nurdiantoro \\
NIM : 13513042
}
\frontmatter
\input{000-cover}
\input{001-approval}
\input{002-statement}
\pagestyle{plain}
\input{003-abstract-id}
%\input{004-abstract-en}
\input{005-forewords}
\titleformat*{\section}{\centering\bfseries\Large\MakeUpperCase}
\tableofcontents
\addcontentsline{toc}{chapter}{DAFTAR ISI}
% \afterpage{\null\newpage}
% \addcontentsline{toc}{chapter}{DAFTAR LAMPIRAN}
{%
\let\oldnumberline\numberline%
\renewcommand{\numberline}{\figurename~\oldnumberline}%
\listoffigures%
}
\addcontentsline{toc}{chapter}{DAFTAR GAMBAR}
{%
\let\oldnumberline\numberline%
\renewcommand{\numberline}{\tablename~\oldnumberline}%
\listoftables%
}
\addcontentsline{toc}{chapter}{DAFTAR TABEL}
%----------------------------------------------------------------%
% Konfigurasi Bab
%----------------------------------------------------------------%
\renewcommand{\chaptername}{BAB}
\renewcommand{\thechapter}{\Roman{chapter}}
%----------------------------------------------------------------%
\titleformat*{\section}{\bfseries\large}
\mainmatter
%----------------------------------------------------------------%
% Dafter Bab
% Untuk menambahkan daftar bab, buat berkas bab misalnya `chapter-6` di direktori `chapters`, dan masukkan ke sini.
%----------------------------------------------------------------%
\input{01-chapter-1}
\input{02-chapter-2}
\input{03-chapter-3}
\input{04-chapter-4}
\input{05-chapter-5}
%----------------------------------------------------------------%
% Daftar pustaka
% Bibliography to Daftar Pustaka
\renewcommand{\bibname}{Daftar Pustaka}
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{DAFTAR PUSTAKA}
%\printbibliography
%\bibliography{references}
%ZCZC RMS 202107023
%\bibstyle{apa}
\bibliography{references}
\bibliographystyle{apalike}
\backmatter
% Index
\appendix
\addtocontents{toc}{\protect\setcounter{tocdepth}{-1}}
\cleardoublepage
\phantomsection
%\part*{Lampiran}
%\addcontentsline{toc}{part}{LAMPIRAN}
% Setting judul appendix
\chapterfont{\Large}
\titleformat{\chapter}[hang]
{\Large\bfseries}
{\chaptertitlename\ \thechapter.\ }{0pt}
{\Large\bfseries}
\titlespacing*{\chapter}{0pt}{-25pt}{10pt}
\input{0A1-appendix-1}
\input{0A2-appendix-2}
\end{document}