Last active
April 17, 2025 17:00
-
-
Save nmalkin/f45a9c59831b9c1b28fda89312399eec to your computer and use it in GitHub Desktop.
Example Typst template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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