nus/cs3230/template.typ
2024-03-11 00:08:48 +08:00

20 lines
609 B
Plaintext

// The project function defines how your document looks.
// It takes your content and some metadata and formats it.
// Go ahead and customize it to your liking!
#let project(title: "", authors: (), body) = {
// Set the document's basic properties.
set document(author: authors, title: title)
set page(
margin: (left: 10mm, right: 10mm, top: 10mm, bottom: 10mm),
numbering: "1",
number-align: center,
)
set text(font: "Source Sans Pro", lang: "en", size: 8pt)
// set heading(numbering: "1.1")
set par(justify: true, leading: 0.65em)
// show: columns.with(4, gutter: 1em)
body
}