diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..58efebe --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/*.rro +/*.pdf diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..359ae45 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,49 @@ + +--- +stages: + - typeset + - rro + +variables: + GIT_SUBMODULE_STRATEGY: recursive + + +final_report: + stage: typeset + image: registry.gitlab.com/silkeh/latex:latest + script: + - latexmk -xelatex report.tex + - mkdir tmp + - mv RichReportOutline.rro tmp/ + artifacts: + paths: + - report.pdf + - tmp/RichReportOutline.rro + only: + refs: + - web + - branches + - tags + changes: + - include/*.tex + - include/references.bib + - report.tex + - content/*.tex + +rro: + stage: rro + dependencies: + - final_report + image: registry.gitlab.com/silkeh/latex:latest + script: + - latexmk -xelatex include/RichReportOutline.tex + artifacts: + paths: + - RichReportOutline.pdf + only: + refs: + - web + - branches + - tags + changes: + - tmp/RichReportOutline.rro diff --git a/.gitlab/issue_templates/New Chapter.md b/.gitlab/issue_templates/New Chapter.md new file mode 100644 index 0000000..994e5e4 --- /dev/null +++ b/.gitlab/issue_templates/New Chapter.md @@ -0,0 +1,31 @@ +Chapter \# +========== + +This is about: + + +## Content +- [] section x + - [] Written + - [] Read + - [] Review + - [] Needs edits + +- [] section y + - [] Written + - [] Read + - [] Review + - [] Needs edits + +- [] section y + - [] Written + - [] Read + - [] Review + - [] Needs edits + +## Reviewed by: + - [] Maureen + - [] Daan + - [] Tim + - [] Jan + diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..68d937b --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "common"] + path = include + url = ssh://git@git.ram.eemcs.utwente.nl:20022/horlingsw/mac.git diff --git a/include b/include new file mode 160000 index 0000000..696eebe --- /dev/null +++ b/include @@ -0,0 +1 @@ +Subproject commit 696eebe3534f7e5133f8c2c4fa1f9c84e0910997 diff --git a/report.tex b/report.tex new file mode 100644 index 0000000..cf795c0 --- /dev/null +++ b/report.tex @@ -0,0 +1,25 @@ +\documentclass[english,titlepage,nomath,nopackage,oneside]{siltex-book} +\include{include/preamble} + +\title{Title} +\subtitle{Thesis Report} +\course{} +\faculty{\large Electrical Engineering, Mathematics and Computer Science} +\supervisor{% + Dr. ir. J.F. Broenink \\ + Ir. T.G. Broenink +} +\author{% + Wouter Horlings +} + +\begin{document} +\maketitle +\makerro +\tableofcontents +\include{include/acronyms} + +%\include{introduction} + +\printbibliography +\end{document}