-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5f250c6
commit 1e802cb
Showing
53 changed files
with
1,418 additions
and
22 deletions.
There are no files selected for viewing
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Pengantar | ||
|
||
Buku Panduan BlankOn 11 Uluwatu ini disusun oleh tim dokumentasi BlankOn dan dikembangkan dari buku panduan BlankOn X Tambora yang ditulis oleh Tim Dokumentasi BlankOn; [Sokibi]([email protected]) (koordinator), [Umul Sidikoh]([email protected]), [Faiq Aminuddin]([email protected]), [TS Faizal]([email protected]), dan [Dicky Bagus]([email protected]) | ||
|
||
|
||
## Tim Penyusun | ||
Tim penyusun buku Panduan BlankOn 11 Uluwatu ini terdiri dari | ||
### Penulis | ||
* Sokibi, Sahabat BlankOn Semarang, [email protected] (koordinator) | ||
* Umul Sidikoh, [email protected] | ||
* Faiq Aminuddin, [email protected] | ||
* TS Faizal, [email protected] | ||
* Dicky Bagus, [email protected] | ||
|
||
### Penyunting | ||
* Sokibi, Sahabat BlankOn Semarang, [email protected] | ||
|
||
### Sampul | ||
* Muhammad Irfan | ||
|
||
## Lisensi | ||
Buku ini menggunakan lisensi Creative Commons Attribution-ShareAlike 3.0 Unported License (CC by SA). | ||
Singkatnya: buku ini bebas diperjualbelikan, didistribusikan ulang, digandakan, dan dikembangkan dengan syarat: | ||
• Menyantumkan informasi tentang penyusun asli buku ini | ||
• Menggunakan lisensi yang sama dengan buku ini juga (CC-by-SA) | ||
|
||
© 2018, Tim Pengembang BlankOn |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file not shown.
File renamed without changes.
Binary file not shown.
Binary file not shown.
File renamed without changes.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
VIM | ||
|
||
Vim adalah ... | ||
|
||
Memulai Vim | ||
Untuk membuka aplikasi Vim, Anda dapat memilih tombol utama *BlankOn* => *Aksesoris* => *Vim* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
## VIM | ||
|
||
Vim adalah ... | ||
|
||
### Memulai Vim | ||
Ada beberapa cara untuk membuka aplikasi Vim. Untuk membuka Vim Anda dapat memilih menu utama *BlankOn* => *Aksesoris* => *Vim* atau dengan mengetik `vim` pada Terminal. |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,181 @@ | ||
\documentclass[a4,11pt]{$documentclass$} | ||
\usepackage[english]{babel} | ||
\usepackage[T1]{fontenc} | ||
\usepackage{tgpagella} | ||
\usepackage{microtype} | ||
\usepackage{booktabs} | ||
|
||
% use upquote if available, for straight quotes in verbatim environments | ||
\usepackage{upquote} | ||
|
||
\usepackage[utf8]{inputenc} | ||
\usepackage{eurosym} | ||
|
||
$if(geometry)$ | ||
\usepackage[$for(geometry)$$geometry$$sep$,$endfor$]{geometry} | ||
$endif$ | ||
|
||
$if(listings)$ | ||
\usepackage{listings} | ||
$endif$ | ||
|
||
$if(highlighting-macros)$ | ||
$highlighting-macros$ | ||
$endif$ | ||
|
||
$if(verbatim-in-note)$ | ||
\usepackage{fancyvrb} | ||
$endif$ | ||
|
||
$if(tables)$ | ||
\usepackage{longtable} | ||
$endif$ | ||
|
||
\usepackage{graphicx} | ||
\usepackage{float} | ||
\restylefloat{figure} | ||
|
||
\usepackage[unicode=true]{hyperref} | ||
\hypersetup{breaklinks=true, | ||
bookmarks=true, | ||
pdfauthor={$author-meta$}, | ||
pdftitle={$title-meta$}, | ||
colorlinks=true, | ||
urlcolor=$if(urlcolor)$$urlcolor$$else$blue$endif$, | ||
linkcolor=$if(linkcolor)$$linkcolor$$else$magenta$endif$, | ||
pdfborder={0 0 0}} | ||
\urlstyle{same} % don't use monospace font for urls | ||
|
||
$if(links-as-notes)$ | ||
% Make links footnotes instead of hotlinks: | ||
\renewcommand{\href}[2]{#2\footnote{\url{#1}}} | ||
$endif$ | ||
|
||
$if(strikeout)$ | ||
\usepackage[normalem]{ulem} | ||
% avoid problems with \sout in headers with hyperref: | ||
\pdfstringdefDisableCommands{\renewcommand{\sout}{}} | ||
$endif$ | ||
|
||
$if(numbersections)$ | ||
$else$ | ||
\setcounter{secnumdepth}{0} | ||
$endif$ | ||
|
||
$if(verbatim-in-note)$ | ||
\VerbatimFootnotes % allows verbatim text in footnotes | ||
$endif$ | ||
|
||
\usepackage{enumerate} | ||
|
||
$if(title)$ | ||
\title{$title$} | ||
$endif$ | ||
\author{$for(author)$$author$$sep$ \and $endfor$} | ||
\date{$date$} | ||
|
||
|
||
% Header and Footer | ||
\usepackage{fancyhdr} | ||
\pagestyle{fancy} | ||
\pagenumbering{arabic} | ||
\lhead{\itshape $title$} | ||
\chead{} | ||
\rhead{\itshape{\nouppercase{\leftmark}}} | ||
$if(version)$ | ||
\lfoot{v$version$} | ||
$endif$ | ||
\cfoot{} | ||
\rfoot{\thepage} | ||
|
||
% Judul Bab | ||
\usepackage{titlesec} | ||
\titleformat{\chapter}[hang] | ||
{\Large\bfseries} | ||
{\MakeUppercase{\chaptertitlename}\hspace{5pt}\thechapter\hspace{10pt}{\Huge{\textbar}}\hspace{5pt}} | ||
{0pt} | ||
{\Huge\bfseries}[\vspace{1ex}\titlerule] | ||
|
||
$if(title)$ | ||
\title{$title$} | ||
$endif$ | ||
|
||
\author{$for(author)$$author$$sep$ \and $endfor$} | ||
\date{$date$} | ||
|
||
$for(header-includes)$ | ||
$header-includes$ | ||
$endfor$ | ||
|
||
\newcommand{\HRule}{\rule{\linewidth}{0.5mm}} | ||
|
||
\begin{document} | ||
|
||
\begin{titlepage} | ||
|
||
\pagenumbering{gobble} | ||
|
||
\begin{center} | ||
|
||
|
||
% Logo | ||
\includegraphics[width=4in]{./logo}\\[3cm] | ||
|
||
\textsc{\LARGE Seri Manajemen Proyek Software}\\[0.5cm] | ||
|
||
% Title | ||
\HRule \\[0.4cm] | ||
{ \huge \bfseries $title$}\\[0.4cm] | ||
|
||
\HRule \\[0.5cm] | ||
|
||
% Subtitle | ||
\textsc{\Large Membuat dokumentasi dengan Markdown dan Pandoc}\\[2cm] | ||
|
||
% sebelah kanan tampilkan informasi | ||
\begin{minipage}{0.8\textwidth} | ||
\begin{flushright} \large | ||
$if(author)$ | ||
\emph{$author$} \\ | ||
$endif$ | ||
|
||
\emph{$date$} \\ | ||
|
||
$if(version)$ | ||
{Versi:} \textsc{$version$} | ||
$endif$ | ||
|
||
\end{flushright} | ||
\end{minipage} | ||
|
||
\vfill | ||
|
||
% Bottom of the page | ||
\includegraphics{./cc-by-sa} \\ | ||
{\large \copyright ~ \the\year ~ ArtiVisi Intermedia} | ||
\end{center} | ||
|
||
\end{titlepage} | ||
|
||
$for(include-before)$ | ||
$include-before$ | ||
$endfor$ | ||
|
||
$if(toc)$ | ||
{ | ||
\hypersetup{linkcolor=black} | ||
\tableofcontents | ||
} | ||
$endif$ | ||
|
||
\newpage | ||
\pagenumbering{arabic} | ||
|
||
$body$ | ||
|
||
|
||
$for(include-after)$ | ||
$include-after$ | ||
$endfor$ | ||
|
||
\end{document} |
Oops, something went wrong.