Skip to content

Instantly share code, notes, and snippets.

@nmalkin
Last active April 17, 2025 17:00
Show Gist options
  • Save nmalkin/f45a9c59831b9c1b28fda89312399eec to your computer and use it in GitHub Desktop.
Save nmalkin/f45a9c59831b9c1b28fda89312399eec to your computer and use it in GitHub Desktop.
Example Typst template
#let template(
content,
) = [
#set page(
paper: "us-letter",
margin: 1in,
)
#set text(
font: (
"Times New Roman"
),
size: 11pt,
hyphenate: true,
)
#set par(
justify: true,
spacing: 0.55em,
leading: 0.55em,
first-line-indent: 1.5em,
)
#set heading(numbering: "1.1 ")
#show heading: set block(
above: 1.5em,
below: 1.0em,
)
#content
]
#show: template
= My Document
== The first section
#lorem(100)
#lorem(100)
#lorem(100)
#lorem(100)
#lorem(100)
#lorem(100)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment