feat(latex): create thesis class and initial document structure with title page and macros

This commit is contained in:
nuluh
2025-05-10 16:23:39 +07:00
parent 4a796694bf
commit 6b866b9ed5
7 changed files with 169 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
\documentclass{thesis}
% Title Information
\setthesisinfo
{Prediksi Lokasi Kerusakan dengan Machine Learning}
{Rifqi Damar Panuluh}
{20210110224}
{PROGRAM STUDI TEKNIK SIPIL}
{FAKULTAS TEKNIK}
{UNIVERSITAS MUHAMMADIYAH YOGYAKARTA}
{2025}
% Input preamble
\input{preamble/packages}
% \input{preamble/fonts}
\input{preamble/macros}
\begin{document}
\maketitle
\tableofcontents
\clearpage
% Include content
\include{content/abstract}
\include{content/introduction}
\include{chapters/01_introduction}
\include{content/chapter2}
\include{content/conclusion}
% Bibliography
% \bibliographystyle{IEEEtran}
% \bibliography{references}
\end{document}