21 lines
604 B
Plaintext
21 lines
604 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,
|
|
flipped: true
|
|
)
|
|
set text(font: "Source Sans Pro", lang: "en", size: 8pt)
|
|
set heading(numbering: "1.1")
|
|
set par(justify: true)
|
|
|
|
show: columns.with(4, gutter: 1em)
|
|
|
|
body
|
|
}
|