-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathcloud-computing--nodejs.tex
More file actions
118 lines (89 loc) · 2.69 KB
/
cloud-computing--nodejs.tex
File metadata and controls
118 lines (89 loc) · 2.69 KB
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
%\documentclass[a4paper,11pt,twocolumn]{article}
\documentclass{scrreprt}
\usepackage{url}
\usepackage{listings}
\usepackage{appendix}
\usepackage{amssymb}
\usepackage{pifont}
\usepackage{makeidx}
\usepackage{fancybox}
\makeindex
\usepackage[usenames,dvipsnames]{color}
\usepackage[T1]{fontenc}
\usepackage{wrapfig}
\usepackage[pdftex]{graphicx}
\usepackage{setspace}
\usepackage[Sonny]{fncychap}
%\usepackage[Bjornstrup]{fncychap}
\usepackage[automark]{scrpage2}
\usepackage{hyperref}
\usepackage{xcolor}
\hypersetup{
colorlinks, linkcolor={BlueViolet},
citecolor={BrickRed}, urlcolor={NavyBlue}
}
\definecolor{lightgray}{rgb}{.9,.9,.9}
\definecolor{darkgray}{rgb}{.4,.4,.4}
\definecolor{purple}{rgb}{0.65, 0.12, 0.82}
\lstdefinelanguage{JavaScript}{
keywords={typeof, new, true, false, catch, function, return, null, catch, switch, var, if, in, while, do, else, case, break},
keywordstyle=\color{blue}\bfseries,
ndkeywords={class, export, boolean, throw, implements, import, this},
ndkeywordstyle=\color{darkgray}\bfseries,
identifierstyle=\color{black},
sensitive=false,
comment=[l]{//},
morecomment=[s]{/*}{*/},
commentstyle=\color{purple}\ttfamily,
stringstyle=\color{red}\ttfamily,
morestring=[b]',
morestring=[b]"
}
\usepackage{colortbl}
\input{./components/rgb.tex}
\input{./components/renew.tex}
\setcounter{tocdepth}{5}
\begin{document}
\pagenumbering{roman}
\pagestyle{scrheadings}
\setheadsepline{.4pt}
\clearscrheadings
\automark[section]{chapter}
\ihead{\headmark}
\ohead{\pagemark}
\cfoot{}
\KOMAoptions{abstract=on}
% \KOMAoptions{bibliography=openstyle}
\definecolor{light-gray}{gray}{0.95}
\lstset{numbers=left,basicstyle=\scriptsize,numberstyle=\scriptsize,frame=tb,captionpos=b,backgroundcolor=\color{light-gray},showspaces=false,showstringspaces=false}
\input{./components/cover.tex}
\input{./components/abstract.tex}
\tableofcontents
\listoffigures
\addcontentsline{toc}{chapter}{\numberline{}Daftar Gambar}
\lstlistoflistings
\addcontentsline{toc}{chapter}{\numberline{}Listing Program}
\listoftables
\addcontentsline{toc}{chapter}{\numberline{}Daftar Tabel}
\newpage
\pagenumbering{arabic}
\setcounter{page}{1}
\input{./components/bab-01.tex}
\input{./components/bab-02.tex}
\input{./components/bab-03.tex}
\input{./components/bab-04.tex}
\input{./components/bab-05.tex}
\input{./components/bab-06.tex}
\input{./components/bab-07.tex}
\input{./components/bab-08.tex}
\input{./components/bibliographies.tex}
\appendix
\appendixpage
\addappheadtotoc
\begin{appendices}
\input{./components/AppendixA.tex}
\input{./components/AppendixB.tex}
\addcontentsline{toc}{chapter}{Indeks}
\printindex
\end{appendices}
\end{document}