Compare commits
48 Commits
a439b45d2c
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 23c5c26472 | |||
| b27c0d1872 | |||
| b92d0a5a97 | |||
| 7fbca3031a | |||
| 12ba818631 | |||
| bc10cf8736 | |||
| 83c9218b81 | |||
| a7ec28cf5c | |||
| 9ea1970fcf | |||
| adcf470b30 | |||
| 108ef1755a | |||
| d2b0965281 | |||
| ad278c6e66 | |||
| 40e3f57f5e | |||
| 1bb9abb8cf | |||
| b1d3f25d48 | |||
| 029f0fe6d6 | |||
| 85bdd56b1c | |||
| cdbf024243 | |||
| 4b69b4ed5d | |||
| 2f080802fb | |||
| 0bf782be40 | |||
| 2665c4b0c1 | |||
| 13455b406d | |||
| 81586f7f19 | |||
| d371820b74 | |||
| 9e486162f7 | |||
| 13069e68ea | |||
| 559d27267c | |||
| 3e210ca9ba | |||
| 603241fce5 | |||
| 6fbf6273ea | |||
| deaaaa276b | |||
| 549af36a07 | |||
| ce4daadd49 | |||
| 8d19df9d53 | |||
| a28e184552 | |||
| 9c83a5bb32 | |||
| 2eda317dd7 | |||
| f7000b4b84 | |||
| be946462f5 | |||
| b089017f69 | |||
| 9cc3641238 | |||
| ffca46746b | |||
| b043b7df22 | |||
| d1f3983799 | |||
| 929978fa87 | |||
| 27517d7419 |
2
.gitmodules
vendored
2
.gitmodules
vendored
@@ -1,4 +1,4 @@
|
||||
[submodule "latex-homework"]
|
||||
path = assignments/template
|
||||
path = src/template
|
||||
url = https://github.com/gijs-pennings/latex-homework.git
|
||||
branch = master
|
||||
|
||||
27
Jenkinsfile
vendored
Normal file
27
Jenkinsfile
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
pipeline {
|
||||
agent any
|
||||
stages {
|
||||
stage('Build') {
|
||||
steps {
|
||||
echo 'Starting build step...'
|
||||
sh 'latexmk -pdf -outdir=out main_text.tex'
|
||||
|
||||
archiveArtifacts artifacts: 'out/main_text.pdf'
|
||||
}
|
||||
}
|
||||
|
||||
// Testing latex isn't really a thing, but we could do basic sanity checks in the future?
|
||||
|
||||
stage('Deploy') {
|
||||
steps{
|
||||
echo 'Starting deploy step...'
|
||||
sh 'cp out/main_text.pdf /var/www/zwietering.eu/pdfs/real_analysis.pdf'
|
||||
}
|
||||
}
|
||||
}
|
||||
post {
|
||||
cleanup {
|
||||
cleanWs()
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -4,4 +4,6 @@ Exercises and maybe (just maybe, like, very probably not) lecture notes on the R
|
||||
|
||||
[Course link](https://ocw.mit.edu/courses/18-100a-real-analysis-fall-2020/)
|
||||
|
||||
The text book is included in the directory root. The `.tex` files can be compiled individually in the corresponding subdirectories or collectively from the assignments directory. I use `pdflatex` with texlive on Arch (through WSL2, [check this guide](https://gist.github.com/ld100/3376435a4bb62ca0906b0cff9de4f94b) on how to do this (why use Ubuntu if you're only going to use the CLI right?)).
|
||||
The text book is included in the directory root. The `.tex` files can be compiled individually in the corresponding subdirectories or collectively from the assignments directory. I use `pdflatex` with texlive on Arch (through WSL2, [check this guide](https://gist.github.com/ld100/3376435a4bb62ca0906b0cff9de4f94b) on how to do this (why use Ubuntu if you're only going to use the CLI right?)).
|
||||
|
||||
The complete generated PDF file can be downloaded from [this address](https://zwietering.eu/pdfs/real_analysis.pdf).
|
||||
Binary file not shown.
Submodule assignments/template deleted from de9419d4cc
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -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}
|
||||
1
src/template
Submodule
1
src/template
Submodule
Submodule src/template added at bb25980b30
Reference in New Issue
Block a user