Forced Stylistic Changes

This commit is contained in:
2025-12-28 10:49:09 +07:00
parent 95f5cd414e
commit f37340d485
15 changed files with 2859 additions and 797 deletions
+16 -3
View File
@@ -52,7 +52,12 @@
#include "Chapter4.typ"
#include "Chapter5.typ"
#bibliography("References.yaml", title: "บรรณานุกรม", full: true, style: "chicago-author-date")
#bibliography(
"References.yaml",
title: "บรรณานุกรม",
full: true,
style: "nong-khai-technical-college-project-guidelines.csl",
)
#pagebreak()
@@ -61,16 +66,24 @@
#let image-credits() = context {
let figures = query(figure.where(kind: "i-figured-image"))
let attributions = query(<afig>)
let offset = 0
for (idx, f) in figures.enumerate() {
if (idx >= attributions.len()) {
return
}
if attributions.at(idx).body.body == [] {
offset += 1
if attributions.at(idx + offset).body.body == [] {
continue
}
}
f.caption
// f.counter.display(f.numbering)
h(2.2em)
attributions.at(idx).body.body
attributions.at(idx + offset).body.body
}
}