Skip to content

Commit 047fc06

Browse files
committed
Merge branch 'v2024'
2 parents 22dbbc5 + f4ea0c8 commit 047fc06

File tree

6 files changed

+527
-1
lines changed

6 files changed

+527
-1
lines changed

evaluation/.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
ltxobj/
2+
results-INL1.csv
3+
results-LAB1.csv
4+
results.csv
5+
results.pdf
6+
results.sh
7+
results.tex
8+
submissions-INL1.csv
9+
submissions-LAB1.csv

evaluation/Makefile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
LATEXFLAGS+= -shell-escape
2+
3+
.PHONY: all
4+
all: results.pdf results.sh
5+
Makefile: results.nw
6+
${NOTANGLE.mk}
7+
INCLUDE_MAKEFILES=../makefiles
8+
include ${INCLUDE_MAKEFILES}/tex.mk
9+
include ${INCLUDE_MAKEFILES}/noweb.mk

evaluation/preamble.tex

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
\usepackage[utf8]{inputenc}
2+
\usepackage[T1]{fontenc}
3+
\usepackage[swedish,british]{babel}
4+
5+
\usepackage{noweb}
6+
\noweboptions{longchunks,longxref}
7+
\usepackage{booktabs}
8+
9+
\usepackage[natbib,style=alphabetic,maxbibnames=99]{biblatex}
10+
\addbibresource{bibliography.bib}
11+
12+
\usepackage[all]{foreign}
13+
\renewcommand{\foreignfullfont}{}
14+
\renewcommand{\foreignabbrfont}{}
15+
16+
%\usepackage{newclude}
17+
\usepackage{import}
18+
19+
\usepackage[strict]{csquotes}
20+
\usepackage[single]{acro}
21+
22+
\usepackage{subcaption}
23+
24+
\usepackage[noend]{algpseudocode}
25+
\usepackage{xparse}
26+
27+
\let\email\texttt
28+
29+
\usepackage[outputdir=ltxobj]{minted}
30+
\setminted{autogobble,linenos}
31+
32+
\usepackage{pythontex}
33+
\setpythontexoutputdir{.}
34+
\setpythontexworkingdir{..}
35+
36+
\usepackage{amsmath}
37+
\usepackage{amssymb}
38+
\usepackage{mathtools}
39+
\usepackage{amsthm}
40+
\usepackage{thmtools}
41+
\usepackage[unq]{unique}
42+
\DeclareMathOperator{\powerset}{\mathcal{P}}
43+
44+
\usepackage[binary-units]{siunitx}
45+
46+
\usepackage{didactic}
47+
48+
\usepackage{hyperref}
49+
\usepackage{cleveref}

0 commit comments

Comments
 (0)