multimodal

This commit is contained in:
2026-06-20 01:47:34 -04:00
parent 7575c514c3
commit c163e6a464
5 changed files with 68 additions and 25 deletions

View File

@@ -1,10 +1,16 @@
#set page("us-letter", margin: 0.5in)
#show: it => context if target() == "paged" {
set page("us-letter", margin: 0.5in)
it
} else {
it
}
#set heading(numbering: "1.1 -")
#set document(title: [The EID Wireless Masterclass])
#context if target() == "bundle" {
asset("/mojangles-ascii.woff2", read("static/mojangles-ascii.woff2", encoding: none))
asset("/style.css", read("static/style.css", encoding: none))
asset("mojangles-ascii.woff2", read("static/mojangles-ascii.woff2", encoding: none))
asset("style.css", read("static/style.css", encoding: none))
}
#let index() = query(document).first()
@@ -16,7 +22,7 @@
html.meta(charset: "utf-8")
html.meta(name: "viewport", content: "width=device-width, initial-scale=1")
html.meta(name: "color-scheme", content: "dark light")
html.link(rel: "stylesheet", href: "/style.css")
html.link(rel: "stylesheet", href: "style.css")
html.title(context document.title)
})
html.body({
@@ -81,13 +87,13 @@
it
}
rawdoc("/index.html", include "content/00-index.typ")
doc("/core.html", include "content/01-core.typ")
doc("/interference.html", include "content/02-interference.typ")
doc("/timing.html", include "content/03-timing.typ")
doc("/design.html", include "content/04-design.typ")
doc("/channels.html", include "content/05-channels.typ")
doc("/transport.html", include "content/06-transport.typ")
doc("/bulk.html", include "content/07-bulk.typ")
doc("/network.html", include "content/08-network.typ")
rawdoc("index.html", include "content/00-index.typ")
doc("core.html", include "content/01-core.typ")
doc("interference.html", include "content/02-interference.typ")
doc("timing.html", include "content/03-timing.typ")
doc("design.html", include "content/04-design.typ")
doc("channels.html", include "content/05-channels.typ")
doc("transport.html", include "content/06-transport.typ")
doc("bulk.html", include "content/07-bulk.typ")
doc("network.html", include "content/08-network.typ")
}