phd-typst/main.typ

77 lines
1.5 KiB
Plaintext
Raw Normal View History

2024-07-09 11:45:16 +02:00
#import "@preview/chic-hdr:0.4.0": *
2023-05-02 17:57:14 +02:00
#import "template.typ"
2023-04-20 11:44:45 +02:00
2023-05-02 17:57:14 +02:00
#show: doc => template.phd(doc)
2023-04-14 18:27:59 +02:00
2023-05-02 17:57:14 +02:00
#include "cover.typ"
2023-05-02 23:55:48 +02:00
2023-05-02 17:57:14 +02:00
#include "abstracts/main.typ"
2023-05-02 23:55:48 +02:00
#pagebreak()
2023-04-18 20:11:20 +02:00
#include "acknowledgments.typ"
2023-05-02 23:55:48 +02:00
#pagebreak()
#[
#set par(first-line-indent: 0em, justify: true, leading: 1em)
#outline(indent: true, depth: 3)
]
2023-04-20 11:44:45 +02:00
#include "introduction/main.typ"
2024-07-09 11:45:16 +02:00
#show: chic.with(
odd: (
chic-footer(
right-side: chic-page-number(),
),
chic-header(
right-side: context {
[ #counter(heading).display((..args) => {
let arr = args.pos()
if arr.len() == 1 {
arr.at(0)
} else {
str(arr.at(0)) + "." + str(arr.at(1))
}
})
#chic-heading-name(fill: true, level: 2, dir: "prev") ]
},
),
chic-separator(1pt),
chic-offset(7pt),
chic-height(1.5cm)
),
even: (
chic-footer(
left-side: chic-page-number(),
),
chic-header(
left-side: context {
[ Chapter #counter(heading).get().at(0) #chic-heading-name(fill: true, level: 1, dir: "prev") ]
},
),
chic-separator(1pt),
chic-offset(7pt),
chic-height(1.5cm)
),
)
2023-04-14 18:27:59 +02:00
#include "foreword/main.typ"
2023-04-22 17:26:54 +02:00
#include "related-work/main.typ"
2023-04-27 17:47:00 +02:00
#include "preliminary-work/main.typ"
2023-04-22 17:26:54 +02:00
2023-05-11 11:59:37 +02:00
#include "dash-3d/main.typ"
2023-06-12 17:32:45 +02:00
#include "mobile/main.typ"
2024-07-09 11:45:16 +02:00
#show: doc => { set page(header: [], footer: []); doc }
2023-04-22 17:26:54 +02:00
#pagebreak()
#bibliography("bib.bib", style: "chicago-author-date")
#pagebreak()
2023-05-02 17:57:14 +02:00
#include "abstracts/fourth.typ"
2023-04-22 17:26:54 +02:00