Compare commits

...

2 Commits

Author SHA1 Message Date
adcf470b30 Fix voor template, hopelijk nu werkend op buildsetup
Some checks failed
gitea/real_analysis/pipeline/head There was a failure building this commit
2025-11-16 00:31:46 +01:00
108ef1755a Revert "Poging met een dockerfile"
This reverts commit d2b0965281.
2025-11-15 20:59:52 +01:00
4 changed files with 10 additions and 7 deletions

View File

@@ -1,2 +0,0 @@
FROM kjarosh/latex:2025.1
RUN tlmgr install libertinus

7
Jenkinsfile vendored
View File

@@ -2,7 +2,12 @@ pipeline {
agent any
stages {
stage('Build') {
agent { dockerfile true }
agent {
docker {
image 'kjarosh/latex:2025.1'
reuseNode true
}
}
steps {
echo 'Starting build step...'
sh 'latexmk -pdf -outdir=out main_text.tex'

View File

@@ -12,9 +12,9 @@
\maketitle
\tableofcontents
\clearpage
\subfile{src/week1.tex}
\subfile{./src/week1.tex}
\clearpage
\subfile{src/week2.tex}
\subfile{./src/week2.tex}
\clearpage
\subfile{src/week3.tex}
\subfile{./src/week3.tex}
\end{document}