Compare commits

...

24 Commits

Author SHA1 Message Date
a7ec28cf5c Overbodig build script nu
Some checks failed
gitea/real_analysis/pipeline/head There was a failure building this commit
2025-11-16 00:37:06 +01:00
9ea1970fcf Fixed submodule 2025-11-16 00:36:47 +01:00
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
d2b0965281 Poging met een dockerfile
Some checks reported errors
gitea/real_analysis/pipeline/head Something is wrong with the build of this commit
2025-11-15 20:37:43 +01:00
ad278c6e66 Libertinus installeren met tlmgr
Some checks failed
gitea/real_analysis/pipeline/head There was a failure building this commit
2025-11-15 20:32:03 +01:00
40e3f57f5e Poging om font werkend te krijgen
Some checks failed
gitea/real_analysis/pipeline/head There was a failure building this commit
2025-11-15 20:16:50 +01:00
1bb9abb8cf Poging tot herstructurering om latexmk beter te benutten
Some checks failed
gitea/real_analysis/pipeline/head There was a failure building this commit
2025-11-15 20:02:47 +01:00
b1d3f25d48 In goede map
Some checks failed
gitea/real_analysis/pipeline/head There was a failure building this commit
2025-11-15 15:16:28 +01:00
029f0fe6d6 Image goed gebruiken
Some checks failed
gitea/real_analysis/pipeline/head There was a failure building this commit
2025-11-15 15:10:50 +01:00
85bdd56b1c Met sudo proberen
Some checks failed
gitea/real_analysis/pipeline/head There was a failure building this commit
2025-11-15 15:07:10 +01:00
cdbf024243 Correcte manier van bash installeren
Some checks failed
gitea/real_analysis/pipeline/head There was a failure building this commit
2025-11-15 15:05:49 +01:00
4b69b4ed5d Met bash geinstalleerd
Some checks failed
gitea/real_analysis/pipeline/head There was a failure building this commit
2025-11-15 15:03:46 +01:00
2f080802fb File expliciet uitvoeren met bash?
Some checks failed
gitea/real_analysis/pipeline/head There was a failure building this commit
2025-11-15 14:02:35 +01:00
0bf782be40 Output van file tonen als debugging
Some checks failed
gitea/real_analysis/pipeline/head There was a failure building this commit
2025-11-15 14:01:34 +01:00
2665c4b0c1 Meer debugging
Some checks failed
gitea/real_analysis/pipeline/head There was a failure building this commit
2025-11-15 13:59:48 +01:00
13455b406d New container image
Some checks failed
gitea/real_analysis/pipeline/head There was a failure building this commit
2025-11-15 13:30:30 +01:00
81586f7f19 Testing in production, check of repo wel in docker container komt
Some checks failed
gitea/real_analysis/pipeline/head There was a failure building this commit
2025-03-04 11:17:07 +01:00
d371820b74 Docker als agent in jenkinsfile
Some checks failed
gitea/real_analysis/pipeline/head There was a failure building this commit
2025-02-23 22:39:47 +01:00
9e486162f7 Nieuwe Jenkins setup testen
Some checks failed
gitea/real_analysis/pipeline/head There was a failure building this commit
2025-02-23 22:27:36 +01:00
13069e68ea Merge branch 'master' of ssh://212.132.118.65:55556/flip/real_analysis
All checks were successful
gitea/real_analysis/pipeline/head This commit looks good
2025-02-22 17:17:34 +01:00
559d27267c Huidige datum toegevoegd 2025-02-22 17:17:24 +01:00
3e210ca9ba Finished git submodule test
All checks were successful
gitea/real_analysis/pipeline/head This commit looks good
2024-06-18 10:57:28 +02:00
603241fce5 Test git submodule on commit
Some checks reported errors
gitea/real_analysis/pipeline/head Something is wrong with the build of this commit
2024-06-18 10:55:23 +02:00
9 changed files with 17 additions and 44 deletions

4
.gitmodules vendored
View File

@@ -1,4 +1,4 @@
[submodule "latex-homework"]
path = assignments/template
url = https://github.com/gijs-pennings/latex-homework.git
path = src/template
url = git@github.com:philippezwietering/latex-homework-fix-libertinusdisplay.git
branch = master

12
Jenkinsfile vendored
View File

@@ -1,10 +1,16 @@
pipeline {
agent {label 'linux'}
agent any
stages {
stage('Build') {
agent {
docker {
image 'kjarosh/latex:2025.1'
reuseNode true
}
}
steps {
echo 'Starting build step...'
sh './scripts/build.sh'
sh 'latexmk -pdf -outdir=out main_text.tex'
}
}
@@ -17,4 +23,4 @@ pipeline {
}
}
}
}
}

View File

@@ -1,4 +1,4 @@
\documentclass{template/homework}
\documentclass{src/template/homework}
\usepackage{enumitem} % Gives access to better enumeration items
\usepackage{tcolorbox} % Gives boxes
@@ -6,15 +6,15 @@
\title{MIT OCW Real Analysis}
\author{Philippe H. Zwietering}
\date{}
\date{\today}
\begin{document}
\maketitle
\tableofcontents
\clearpage
\subfile{week1/main.tex}
\subfile{./src/week1.tex}
\clearpage
\subfile{week2/main.tex}
\subfile{./src/week2.tex}
\clearpage
\subfile{week3/main.tex}
\subfile{./src/week3.tex}
\end{document}

View File

@@ -1,33 +0,0 @@
#!/bin/bash
# Build all directories
subdirectory_file_name=main
cd assignments
for D in *; do
if [ "${D}" != "template" ] && [ -d "${D}" ]; then
echo "Building ${D}..."
cd "${D}"
pdflatex -interaction=batchmode -halt-on-error "${subdirectory_file_name}.tex"
pdflatex -interaction=batchmode -halt-on-error "${subdirectory_file_name}.tex"
cd ..
fi
done
# Build main PDF
main_file_name=main_text
echo "Building main PDF..."
pdflatex -interaction=batchmode -halt-on-error "${main_file_name}.tex"
pdflatex -interaction=batchmode -halt-on-error "${main_file_name}.tex"
# Clean up
rm -rf *.aux *.log *.out *.toc
for D in *; do
if [ "${D}" != "template" ] && [ -d "${D}" ]; then
cd "${D}"
rm -rf *.aux *.log *.out *.toc
cd ..
fi
done

1
src/template Submodule

Submodule src/template added at 5640ec8ace