├── .github ├── dependabot.yml └── workflows │ └── ci.yaml ├── .gitignore ├── LICENSE ├── README.md ├── abstrak ├── abstrak-en.tex └── abstrak-id.tex ├── bab ├── 1-pendahuluan.tex ├── 2-tinjauan-pustaka.tex ├── 3-desain-implementasi.tex ├── 4-pengujian-analisis.tex └── 5-penutup.tex ├── gambar ├── elon.jpg └── roketluarangkasa.jpg ├── lainnya ├── biografi-penulis.tex ├── kata-pengantar.tex ├── lembar-pengesahan-en.tex ├── lembar-pengesahan.tex ├── pernyataan-keaslian-en.tex └── pernyataan-keaslian.tex ├── main.tex ├── program └── bilangan-prima.py ├── pustaka ├── pustaka.bib ├── tanda-hubung.tex └── variables.tex └── sampul ├── gambar ├── sampul-dalam.png ├── sampul-luar-tipis.png └── sampul-luar.png ├── konten-en.tex ├── konten-id.tex ├── sampul-dalam.tex ├── sampul-luar-tipis.tex └── sampul-luar.tex /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/README.md -------------------------------------------------------------------------------- /abstrak/abstrak-en.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/abstrak/abstrak-en.tex -------------------------------------------------------------------------------- /abstrak/abstrak-id.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/abstrak/abstrak-id.tex -------------------------------------------------------------------------------- /bab/1-pendahuluan.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/bab/1-pendahuluan.tex -------------------------------------------------------------------------------- /bab/2-tinjauan-pustaka.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/bab/2-tinjauan-pustaka.tex -------------------------------------------------------------------------------- /bab/3-desain-implementasi.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/bab/3-desain-implementasi.tex -------------------------------------------------------------------------------- /bab/4-pengujian-analisis.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/bab/4-pengujian-analisis.tex -------------------------------------------------------------------------------- /bab/5-penutup.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/bab/5-penutup.tex -------------------------------------------------------------------------------- /gambar/elon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/gambar/elon.jpg -------------------------------------------------------------------------------- /gambar/roketluarangkasa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/gambar/roketluarangkasa.jpg -------------------------------------------------------------------------------- /lainnya/biografi-penulis.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/lainnya/biografi-penulis.tex -------------------------------------------------------------------------------- /lainnya/kata-pengantar.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/lainnya/kata-pengantar.tex -------------------------------------------------------------------------------- /lainnya/lembar-pengesahan-en.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/lainnya/lembar-pengesahan-en.tex -------------------------------------------------------------------------------- /lainnya/lembar-pengesahan.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/lainnya/lembar-pengesahan.tex -------------------------------------------------------------------------------- /lainnya/pernyataan-keaslian-en.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/lainnya/pernyataan-keaslian-en.tex -------------------------------------------------------------------------------- /lainnya/pernyataan-keaslian.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/lainnya/pernyataan-keaslian.tex -------------------------------------------------------------------------------- /main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/main.tex -------------------------------------------------------------------------------- /program/bilangan-prima.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/program/bilangan-prima.py -------------------------------------------------------------------------------- /pustaka/pustaka.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/pustaka/pustaka.bib -------------------------------------------------------------------------------- /pustaka/tanda-hubung.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/pustaka/tanda-hubung.tex -------------------------------------------------------------------------------- /pustaka/variables.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/pustaka/variables.tex -------------------------------------------------------------------------------- /sampul/gambar/sampul-dalam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/sampul/gambar/sampul-dalam.png -------------------------------------------------------------------------------- /sampul/gambar/sampul-luar-tipis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/sampul/gambar/sampul-luar-tipis.png -------------------------------------------------------------------------------- /sampul/gambar/sampul-luar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/sampul/gambar/sampul-luar.png -------------------------------------------------------------------------------- /sampul/konten-en.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/sampul/konten-en.tex -------------------------------------------------------------------------------- /sampul/konten-id.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/sampul/konten-id.tex -------------------------------------------------------------------------------- /sampul/sampul-dalam.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/sampul/sampul-dalam.tex -------------------------------------------------------------------------------- /sampul/sampul-luar-tipis.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/sampul/sampul-luar-tipis.tex -------------------------------------------------------------------------------- /sampul/sampul-luar.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b201lab/template-buku-ta-its/HEAD/sampul/sampul-luar.tex --------------------------------------------------------------------------------