dhbw-abb-typst-template/src/style.typ

146 lines
4.1 KiB
Plaintext
Raw Normal View History

2024-06-27 13:57:04 +00:00
// .--------------------------------------------------------------------------.
// | Global style of document |
// '--------------------------------------------------------------------------'
// Author: Sven Vogel
// Edited: 27.06.2024
// License: MIT
// global style of document
#let global_styled_doc(config: dictionary, body: content) = context {
let thesis = config.thesis
let style = config.style
2024-07-01 10:13:57 +00:00
2024-06-27 13:57:04 +00:00
// set page geometry
// and paper format
set page(
paper: style.page.format,
margin: style.page.margin)
2024-06-27 13:57:04 +00:00
set text(
size: style.text.size,
2024-06-28 09:54:30 +00:00
ligatures: true,
hyphenate: true,
dir: ltr,
font: style.text.font)
2024-06-28 09:54:30 +00:00
show heading: set text(
font: style.heading.font,
2024-06-28 09:54:30 +00:00
weight: "semibold")
set heading(supplement: [chapter])
2024-07-01 12:46:32 +00:00
2024-06-28 09:54:30 +00:00
// Set header spacing
show heading.where(level: 1): it => v(2em) + it + v(1em)
show heading.where(level: 2): it => v(1em) + it + v(0.5em)
show heading.where(level: 3): it => v(0.5em) + it + v(0.25em)
2024-06-28 09:54:30 +00:00
// set theme for code blocks
set raw(tab-size: 4, theme: "res/github.tmTheme")
show raw.where(block: true): code => {
2024-07-01 10:13:57 +00:00
show raw.line: line => {
text(fill: gray)[#line.number]
h(1em)
line.body
}
code
}
2024-06-27 13:57:04 +00:00
set block(spacing: 2em)
set par(
2024-06-28 13:20:58 +00:00
justify: true,
first-line-indent: 1em,
leading: 1em)
// give links a color
show link: set text(fill: style.link.color)
show ref: set text(fill: style.link.color)
2024-06-28 09:54:30 +00:00
set heading(numbering: none)
set page(
header-ascent: style.header.underline-top-padding + style.header.bottom-padding,
2024-07-01 10:13:57 +00:00
footer-descent: 1em,
margin: (
top: style.page.margin.top + style.header.logo-height + style.header.underline-top-padding + style.header.bottom-padding,
bottom: style.page.margin.bottom + 1em),
2024-07-01 10:13:57 +00:00
numbering: (..nums) => {
let current-page = here().page()
if current-page == 1{
[]
2024-07-01 11:50:54 +00:00
} else if query(<end-of-prelude>).first().location().page() > current-page {
numbering("I", nums.pos().first())
} else if query(<end-of-content>).first().location().page() >= current-page {
2024-07-01 10:13:57 +00:00
numbering("1 / 1", ..nums)
} else {
2024-07-01 11:50:54 +00:00
numbering("a", nums.pos().first())
2024-07-01 10:13:57 +00:00
}
},
header: context {
set align(left)
if here().page() == 1 {
// logo of ABB and DHBW
grid(
// set width of columns
// we need two, so make both half the page width
columns: (50%, 50%),
// left align logo of ABB
align(left, image("res/ABB.svg", height: style.header.logo-height)),
2024-07-01 10:13:57 +00:00
// right align logo of DHBW
align(right, image("res/DHBW.svg", height: style.header.logo-height)))
2024-07-01 10:13:57 +00:00
} else if query(<end-of-prelude>).first().location().page() <= here().page() {
let headers-before = query(selector(heading.where(numbering: "1.", level: 1)).before(here()))
let header-title = thesis.title
if headers-before.len() > 0 {
header-title = headers-before.last().body
} else {
let headers-after = query(selector(heading.where(numbering: "1.", level: 1)).after(here()))
if headers-after.len() > 0 {
header-title = headers-after.first().body
}
}
grid(
columns: (1fr, auto),
align: (horizon, bottom),
context [ _ #header-title _ ],
image("res/DHBW.svg", height: style.header.logo-height))
2024-07-01 10:13:57 +00:00
v(style.header.underline-top-padding - 1em)
2024-07-01 10:13:57 +00:00
line(length: 100%)
} else {
grid(
columns: (1fr, auto),
align: (horizon, bottom),
context [ _ #config.thesis.title _ ],
image("res/DHBW.svg", height: style.header.logo-height)
2024-07-01 10:13:57 +00:00
)
v(style.header.underline-top-padding - 1em)
2024-07-01 10:13:57 +00:00
line(length: 100%)
}
})
body
}
2024-07-01 10:13:57 +00:00
#let content_styled(config: dictionary, body: content) = [
2024-06-28 13:20:58 +00:00
#set heading(numbering: "1.")
2024-07-01 10:13:57 +00:00
#let thesis = config.thesis
2024-06-28 13:20:58 +00:00
2024-07-01 10:13:57 +00:00
#body
2024-06-28 09:54:30 +00:00
]
2024-07-01 11:50:54 +00:00
#let end_styled(config: dictionary, body: content) = [
#set heading(numbering: "1.")
#let thesis = config.thesis
#body
]