summaryrefslogtreecommitdiff
path: root/src/final/preface.typ
blob: 6b6776112e6fb294ac231c61b9318e9debccc881 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Content for Abstract, Acknowledgements, Table of Contents

#set heading(numbering: none) // Temporarily disable numbering for Abstract/Ack
= Abstract <abstract>
#show heading.where(level: 1): it => {
  set block(above: 2em, below: 1em) // Adjust spacing for these headings
  align(center, text(16pt, weight: "bold", it.body))
}

// Abstract text goes here...
#lorem(50)

#pagebreak()

= Acknowledgements <acknowledgements>

// Acknowledgements text goes here...
Special thanks to...

#pagebreak()

= Table of Contents <toc>
#set heading(numbering: "1.1.1") // Re-enable numbering before ToC
#outline(
  title: none, // Don't repeat "Table of Contents" inside the outline
  depth: 2 // Show chapter and section headings, adjust as needed
)

#pagebreak() // Ensure Chapter 1 starts on a new page