This commit is contained in:
2025-05-19 23:08:28 +02:00
commit 4d6c7201ee
15 changed files with 842 additions and 0 deletions

115
core-page-style.typ Normal file
View File

@@ -0,0 +1,115 @@
#import "common.typ": *
#let small-font-size = 14pt
#let default-font-size = 17pt
#let core-page-style(content) = {[
#show: x => context {
set page(width: auto, height: auto) if is-web and not is-html()
set page(paper: "a4") if not is-web and not is-html()
x
}
#set text(font: "DejaVu Sans Mono", size: default-font-size)
#show raw: it => box(
stroke: black,
radius: 2pt,
inset: if is-html() { 1.4pt } else { 4pt },
outset: 0pt,
baseline: 3.1pt,
text(it)
)
#show box: it => {
context if is-html() {
html.elem("span", attrs: (style: css-style(it)))[#it.body]
} else {
it
}
}
#show underline: it => {
context if is-html() {
html.elem("u", it.body)
} else {
it
}
}
#show heading: it => underline[#it #v(3pt)]
#set underline(stroke: 1pt, offset: 2pt)
#show footnote: it => if is-web { [] } else { it }
#show footnote.entry: it => if is-web { [] } else { it }
#context if is-html() {
html.elem("style", "
@font-face {
font-family: 'DejaVu Sans Mono';
src: url('res/DejaVuSansMono-Bold.woff2') format('woff2'),
url('res/DejaVuSansMono-Bold.woff') format('woff'),
local('DejaVu Sans Mono'),
local('Courier New'),
local(Courier),
local(monospace);
font-weight: bold;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'DejaVu Sans Mono';
src: url('res/DejaVuSansMono.woff2') format('woff2'),
url('res/DejaVuSansMono.woff') format('woff'),
local('DejaVu Sans Mono'),
local('Courier New'),
local(Courier),
local(monospace);
font-weight: normal;
font-style: normal;
font-display: swap;
}
body {
font-family: DejaVu Sans Mono;
font-size: "+len2css(default-font-size)+";
}
td {
width: 100%;
display: inline;
vertical-align: top;
}
h1,h2,h3,h4 {
margin-top: 1%;
margin-bottom: 0.75%;
" + if is-web { "margin-left: -0.75%;" } else { "" }
+
"
}
p {
margin-top: 0.75%;
margin-bottom: 0.75%;
}
ul {
margin-top: 0%;
}
.current {
font-weight: bold;
}
")
}
#content
]
}