Feat: Additional preambles between title page and table of contents

This commit is contained in:
Laurenz 2025-03-28 09:50:56 +01:00
parent 348f744d78
commit f078966e06
Signed by: C0ffeeCode
SSH key fingerprint: SHA256:prvFOyBjButRypyXm7X8lbbCkly2Dq1PF7e/mrsPVjw
3 changed files with 7 additions and 0 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

View file

@ -129,6 +129,8 @@
// Does the document require a Confidentiality Clause? // Does the document require a Confidentiality Clause?
confidentiality_clause: false, confidentiality_clause: false,
// List of additional files/chapters to place between title page and table of contents
additional_preamble: (),
// Path to your bibliography file // Path to your bibliography file
// You may use `.yml` for Hayagriva format // You may use `.yml` for Hayagriva format
@ -337,6 +339,11 @@
pagebreak(weak: true) pagebreak(weak: true)
} }
#for i in additional_preamble {
include str(i)
pagebreak(weak: true)
}
// render the abstract aligned to the center of the page // render the abstract aligned to the center of the page
#set align(horizon) #set align(horizon)
#set align(center) #set align(center)