Compare commits
No commits in common. "dd902adebd17829789f7f06c761b70f50afff280" and "418992d27fb9de50e77438cfd887b6dd870d8d9b" have entirely different histories.
dd902adebd
...
418992d27f
|
@ -43,11 +43,11 @@
|
||||||
|
|
||||||
set par(justify: true)
|
set par(justify: true)
|
||||||
|
|
||||||
if text.lang == "de" [
|
if text.lang == "de" [
|
||||||
darf weder als Ganzes noch in Auszügen Personen außerhalb des Prüfungsprozesses und des Evaluationsverfahrens zugänglich gemacht werden, sofern keine anderslautende Genehmigung der Ausbildungsstätte vorliegt.
|
darf weder als Ganzes noch in Auszügen Personen außerhalb des Prüfungsprozesses und des Evalua-tionsverfahrens zugänglich gemacht werden, sofern keine anderslautende Genehmigung der Ausbildungsstätte vorliegt.
|
||||||
] else if text.lang == "en" [
|
] else if text.lang == "en" [
|
||||||
may not be made accessible to persons outside the examination process and the evaluation procedure, either as a whole or in excerpts, unless otherwise authorized by the training institution.
|
may not be made accessible to persons outside the examination process and the evaluation procedure, either as a whole or in excerpts, unless otherwise authorized by the training institution.
|
||||||
]
|
]
|
||||||
|
|
||||||
set align(horizon)
|
set align(horizon)
|
||||||
|
|
||||||
|
|
|
@ -28,11 +28,11 @@
|
||||||
// faculty
|
// faculty
|
||||||
#pad(top: 0.5cm)[
|
#pad(top: 0.5cm)[
|
||||||
#if text.lang == "de" [
|
#if text.lang == "de" [
|
||||||
Praxisphase des #author.semester Semesters an der Fakultät für #author.faculty
|
Praxisphase des #author.semester Studienjahrs an der Fakultät für #author.faculty
|
||||||
#linebreak()
|
#linebreak()
|
||||||
im Studiengang #author.program
|
im Studiengang #author.program
|
||||||
] else if text.lang == "en" [
|
] else if text.lang == "en" [
|
||||||
Practical phase of the #author.semester semester at the Faculty of #author.faculty
|
Practical phase of the #author.semester academic year at the Faculty of #author.faculty
|
||||||
#linebreak()
|
#linebreak()
|
||||||
in the degree program #author.program
|
in the degree program #author.program
|
||||||
] else [
|
] else [
|
||||||
|
|
|
@ -111,37 +111,40 @@
|
||||||
e => {
|
e => {
|
||||||
let (i, l) = e
|
let (i, l) = e
|
||||||
let n = i + 1
|
let n = i + 1
|
||||||
let n_str = if (calc.rem(n, 1) == 0) or (true and i == 0) { text(font: style.code.font, size: style.code.size, fill: ABB-BLACK, str(n)) } else { none }
|
let n_str = if (calc.rem(n, 1) == 0) or (true and i == 0) {
|
||||||
|
text(font: style.code.font, size: style.code.size, fill: ABB-BLACK, str(n))
|
||||||
|
} else {
|
||||||
|
none
|
||||||
|
}
|
||||||
(n_str + h(0.5em), raw(block: true, lang: lang, l))
|
(n_str + h(0.5em), raw(block: true, lang: lang, l))
|
||||||
})
|
},
|
||||||
}
|
)
|
||||||
else {
|
} else {
|
||||||
( ( 1fr, ),
|
(
|
||||||
( left, ),
|
(1fr,),
|
||||||
e => {
|
(left,),
|
||||||
let (i, l) = e
|
e => {
|
||||||
raw(block: true, lang: lang, l)
|
let (i, l) = e
|
||||||
}
|
raw(block: true, lang: lang, l)
|
||||||
)
|
},
|
||||||
}
|
)
|
||||||
}
|
}
|
||||||
grid(
|
}
|
||||||
stroke: none,
|
grid(
|
||||||
columns: columns,
|
stroke: none,
|
||||||
rows: (auto,),
|
columns: columns,
|
||||||
gutter: 0pt,
|
rows: (auto,),
|
||||||
inset: 0.25em,
|
gutter: 0pt,
|
||||||
align: (col, _) => align.at(col),
|
inset: 0.25em,
|
||||||
fill: ABB-GRAY-06,
|
align: (col, _) => align.at(col),
|
||||||
..content
|
fill: ABB-GRAY-06,
|
||||||
.text
|
..content.text.split("\n").enumerate().map(make_row).flatten().map(c => if c.has("text") and c.text == "" {
|
||||||
.split("\n")
|
v(1em)
|
||||||
.enumerate()
|
} else {
|
||||||
.map(make_row)
|
c
|
||||||
.flatten()
|
})
|
||||||
.map(c => if c.has("text") and c.text == "" { v(1em) } else { c })
|
)
|
||||||
)
|
},
|
||||||
}
|
|
||||||
)
|
)
|
||||||
#v(-1em)
|
#v(-1em)
|
||||||
#align(center + top, it.caption)
|
#align(center + top, it.caption)
|
||||||
|
@ -178,8 +181,20 @@
|
||||||
stroke: (x, y) => (
|
stroke: (x, y) => (
|
||||||
left: none,
|
left: none,
|
||||||
right: none,
|
right: none,
|
||||||
top: if y == 0 { 1.5pt } else if y < 2 { 1pt } else { 0.5pt },
|
top: if y == 0 {
|
||||||
bottom: if y == 0 { 1pt } else { 1.5pt } ))
|
1.5pt
|
||||||
|
} else if y < 2 {
|
||||||
|
1pt
|
||||||
|
} else {
|
||||||
|
0.5pt
|
||||||
|
},
|
||||||
|
bottom: if y == 0 {
|
||||||
|
1pt
|
||||||
|
} else {
|
||||||
|
1.5pt
|
||||||
|
},
|
||||||
|
),
|
||||||
|
)
|
||||||
|
|
||||||
// make table header bold
|
// make table header bold
|
||||||
show table.cell.where(y: 0): set text(weight: "bold")
|
show table.cell.where(y: 0): set text(weight: "bold")
|
||||||
|
@ -188,7 +203,8 @@
|
||||||
set par(
|
set par(
|
||||||
justify: true,
|
justify: true,
|
||||||
first-line-indent: 1em,
|
first-line-indent: 1em,
|
||||||
leading: 1em)
|
leading: 1em,
|
||||||
|
)
|
||||||
|
|
||||||
// give links a color
|
// give links a color
|
||||||
show link: set text(fill: style.link.color)
|
show link: set text(fill: style.link.color)
|
||||||
|
@ -204,10 +220,11 @@
|
||||||
top: style.page.margin.top + style.header.underline-top-padding + style.header.content-padding,
|
top: style.page.margin.top + style.header.underline-top-padding + style.header.content-padding,
|
||||||
bottom: style.page.margin.bottom + style.footer.content-padding,
|
bottom: style.page.margin.bottom + style.footer.content-padding,
|
||||||
left: style.page.margin.left,
|
left: style.page.margin.left,
|
||||||
right: style.page.margin.right),
|
right: style.page.margin.right,
|
||||||
|
),
|
||||||
numbering: (..nums) => {
|
numbering: (..nums) => {
|
||||||
let current-page = here().page()
|
let current-page = here().page()
|
||||||
if current-page == 1{
|
if current-page == 1 {
|
||||||
[]
|
[]
|
||||||
} else if query(<end-of-prelude>).first().location().page() > current-page {
|
} else if query(<end-of-prelude>).first().location().page() > current-page {
|
||||||
numbering("I", nums.pos().first())
|
numbering("I", nums.pos().first())
|
||||||
|
@ -248,7 +265,10 @@
|
||||||
// right align logo of DHBW
|
// right align logo of DHBW
|
||||||
align(right, image("res/DHBW.svg", height: style.header.logo-height)))
|
align(right, image("res/DHBW.svg", height: style.header.logo-height)))
|
||||||
|
|
||||||
} else if query(<end-of-content>).first().location().page() >= current-page and query(<end-of-prelude>).first().location().page() < current-page + 1 {
|
} else if query(<end-of-content>).first().location().page() >= current-page and query(<end-of-prelude>)
|
||||||
|
.first()
|
||||||
|
.location()
|
||||||
|
.page() < current-page + 1 {
|
||||||
let heading = currentH()
|
let heading = currentH()
|
||||||
|
|
||||||
heading.at(0)
|
heading.at(0)
|
||||||
|
@ -261,7 +281,8 @@
|
||||||
v(style.header.underline-top-padding - 1em)
|
v(style.header.underline-top-padding - 1em)
|
||||||
line(length: 100%)
|
line(length: 100%)
|
||||||
}
|
}
|
||||||
})
|
},
|
||||||
|
)
|
||||||
|
|
||||||
body
|
body
|
||||||
}
|
}
|
||||||
|
|
|
@ -107,6 +107,7 @@ $
|
||||||
|
|
||||||
#pagebreak()
|
#pagebreak()
|
||||||
|
|
||||||
|
|
||||||
= Conclusion
|
= Conclusion
|
||||||
|
|
||||||
#lorem(320)
|
#lorem(320)
|
||||||
|
|
Loading…
Reference in New Issue