page
ElementElementElement functions can be customized with set
and show
rules.
set
and show
rules.Layouts its child onto one or multiple pages.
Although this function is primarily used in set rules to affect page properties, it can also be used to explicitly render its argument onto a set of pages of its own.
Pages can be set to use auto
as their width or height. In this case, the
pages will grow to fit their content on the respective axis.
The Guide for Page Setup explains how to use this and related functions to set up a document with many examples.
Example
#set page("us-letter")
There you go, US friends!

ParameterParameterParameters are input values for functions. Specify them in parentheses after the function name.
paper
A standard paper size to set width and height.
This is just a shorthand for setting width
and height
and, as such,
cannot be retrieved in a context expression.
Available string values:
a0
Produces a paper of the respective size.
a1
Produces a paper of the respective size.
a2
Produces a paper of the respective size.
a3
Produces a paper of the respective size.
a4
Produces a paper of the respective size.
a5
Produces a paper of the respective size.
a6
Produces a paper of the respective size.
a7
Produces a paper of the respective size.
a8
Produces a paper of the respective size.
a9
Produces a paper of the respective size.
a10
Produces a paper of the respective size.
a11
Produces a paper of the respective size.
iso-b1
Produces a paper of the respective size.
iso-b2
Produces a paper of the respective size.
iso-b3
Produces a paper of the respective size.
iso-b4
Produces a paper of the respective size.
iso-b5
Produces a paper of the respective size.
iso-b6
Produces a paper of the respective size.
iso-b7
Produces a paper of the respective size.
iso-b8
Produces a paper of the respective size.
iso-c3
Produces a paper of the respective size.
iso-c4
Produces a paper of the respective size.
iso-c5
Produces a paper of the respective size.
iso-c6
Produces a paper of the respective size.
iso-c7
Produces a paper of the respective size.
iso-c8
Produces a paper of the respective size.
din-d3
Produces a paper of the respective size.
din-d4
Produces a paper of the respective size.
din-d5
Produces a paper of the respective size.
din-d6
Produces a paper of the respective size.
din-d7
Produces a paper of the respective size.
din-d8
Produces a paper of the respective size.
sis-g5
Produces a paper of the respective size.
sis-e5
Produces a paper of the respective size.
ansi-a
Produces a paper of the respective size.
ansi-b
Produces a paper of the respective size.
ansi-c
Produces a paper of the respective size.
ansi-d
Produces a paper of the respective size.
ansi-e
Produces a paper of the respective size.
arch-a
Produces a paper of the respective size.
arch-b
Produces a paper of the respective size.
arch-c
Produces a paper of the respective size.
arch-d
Produces a paper of the respective size.
arch-e1
Produces a paper of the respective size.
arch-e
Produces a paper of the respective size.
jis-b0
Produces a paper of the respective size.
jis-b1
Produces a paper of the respective size.
jis-b2
Produces a paper of the respective size.
jis-b3
Produces a paper of the respective size.
jis-b4
Produces a paper of the respective size.
jis-b5
Produces a paper of the respective size.
jis-b6
Produces a paper of the respective size.
jis-b7
Produces a paper of the respective size.
jis-b8
Produces a paper of the respective size.
jis-b9
Produces a paper of the respective size.
jis-b10
Produces a paper of the respective size.
jis-b11
Produces a paper of the respective size.
sac-d0
Produces a paper of the respective size.
sac-d1
Produces a paper of the respective size.
sac-d2
Produces a paper of the respective size.
sac-d3
Produces a paper of the respective size.
sac-d4
Produces a paper of the respective size.
sac-d5
Produces a paper of the respective size.
sac-d6
Produces a paper of the respective size.
iso-id-1
Produces a paper of the respective size.
iso-id-2
Produces a paper of the respective size.
iso-id-3
Produces a paper of the respective size.
asia-f4
Produces a paper of the respective size.
jp-shiroku-ban-4
Produces a paper of the respective size.
jp-shiroku-ban-5
Produces a paper of the respective size.
jp-shiroku-ban-6
Produces a paper of the respective size.
jp-kiku-4
Produces a paper of the respective size.
jp-kiku-5
Produces a paper of the respective size.
jp-business-card
Produces a paper of the respective size.
cn-business-card
Produces a paper of the respective size.
eu-business-card
Produces a paper of the respective size.
fr-tellière
Produces a paper of the respective size.
fr-couronne-écriture
Produces a paper of the respective size.
fr-couronne-édition
Produces a paper of the respective size.
fr-raisin
Produces a paper of the respective size.
fr-carré
Produces a paper of the respective size.
fr-jésus
Produces a paper of the respective size.
uk-brief
Produces a paper of the respective size.
uk-draft
Produces a paper of the respective size.
uk-foolscap
Produces a paper of the respective size.
uk-quarto
Produces a paper of the respective size.
uk-crown
Produces a paper of the respective size.
uk-book-a
Produces a paper of the respective size.
uk-book-b
Produces a paper of the respective size.
us-letter
Produces a paper of the respective size.
us-legal
Produces a paper of the respective size.
us-tabloid
Produces a paper of the respective size.
us-executive
Produces a paper of the respective size.
us-foolscap-folio
Produces a paper of the respective size.
us-statement
Produces a paper of the respective size.
us-ledger
Produces a paper of the respective size.
us-oficio
Produces a paper of the respective size.
us-gov-letter
Produces a paper of the respective size.
us-gov-legal
Produces a paper of the respective size.
us-business-card
Produces a paper of the respective size.
us-digest
Produces a paper of the respective size.
us-trade
Produces a paper of the respective size.
newspaper-compact
Produces a paper of the respective size.
newspaper-berliner
Produces a paper of the respective size.
newspaper-broadsheet
Produces a paper of the respective size.
presentation-16-9
Produces a paper of the respective size.
presentation-4-3
Produces a paper of the respective size.
Default value: "a4"
width
The width of the page.
Default value: 595.28pt
Show example
#set page(
width: 3cm,
margin: (x: 0cm),
)
#for i in range(3) {
box(square(width: 1cm))
}

height
The height of the page.
If this is set to auto
, page breaks can only be triggered manually
by inserting a page break or by adding another non-empty
page set rule. Most examples throughout this documentation use auto
for the height of the page to dynamically grow and shrink to fit their
content.
Default value: 841.89pt
flipped
SettableSettableSettable parameters can be set using the set
rule, changing the default value used thereafter.
set
rule, changing the default value used thereafter.Whether the page is flipped into landscape orientation.
Default value: false
Show example
#set page(
"us-business-card",
flipped: true,
fill: rgb("f2e5dd"),
)
#set align(bottom + end)
#text(14pt)[*Sam H. Richards*] \
_Procurement Manager_
#set text(10pt)
17 Main Street \
New York, NY 10001 \
+1 555 555 5555

margin
SettableSettableSettable parameters can be set using the set
rule, changing the default value used thereafter.
set
rule, changing the default value used thereafter.The page's margins.
auto
: The margins are set automatically to 2.5/21 times the smaller dimension of the page. This results in 2.5 cm margins for an A4 page.- A single length: The same margin on all sides.
- A dictionary: With a dictionary, the margins can be set individually.
The dictionary can contain the following keys in order of precedence:
top
: The top margin.right
: The right margin.bottom
: The bottom margin.left
: The left margin.inside
: The margin at the inner side of the page (where the binding is).outside
: The margin at the outer side of the page (opposite to the binding).x
: The horizontal margins.y
: The vertical margins.rest
: The margins on all sides except those for which the dictionary explicitly sets a size.
All keys are optional; omitted keys will use their previously set value,
or the default margin if never set. In addition, the values for left
and right
are mutually exclusive with the values for inside
and
outside
.
Default value: auto
Show example
#set page(
width: 3cm,
height: 4cm,
margin: (x: 8pt, y: 4pt),
)
#rect(
width: 100%,
height: 100%,
fill: aqua,
)

binding
On which side the pages will be bound.
auto
: Equivalent toleft
if the text direction is left-to-right andright
if it is right-to-left.left
: Bound on the left side.right
: Bound on the right side.
This affects the meaning of the inside
and outside
options for
margins.
Default value: auto
columns
SettableSettableSettable parameters can be set using the set
rule, changing the default value used thereafter.
set
rule, changing the default value used thereafter.How many columns the page has.
If you need to insert columns into a page or other container, you can
also use the columns
function.
Default value: 1
Show example
#set page(columns: 2, height: 4.8cm)
Climate change is one of the most
pressing issues of our time, with
the potential to devastate
communities, ecosystems, and
economies around the world. It's
clear that we need to take urgent
action to reduce our carbon
emissions and mitigate the impacts
of a rapidly changing climate.

fill
The page's background fill.
Setting this to something non-transparent instructs the printer to color the complete page. If you are considering larger production runs, it may be more environmentally friendly and cost-effective to source pre-dyed pages and not set this property.
When set to none
, the background becomes transparent. Note that PDF
pages will still appear with a (usually white) background in viewers,
but they are actually transparent. (If you print them, no color is used
for the background.)
The default of auto
results in none
for PDF output, and
white
for PNG and SVG.
Default value: auto
Show example
#set page(fill: rgb("444352"))
#set text(fill: rgb("fdfdfd"))
*Dark mode enabled.*

numbering
How to number the pages. You can refer to the page setup guide for customizing page numbers.
Accepts a numbering pattern or function taking one or two numbers:
- The first number is the current page number.
- The second number is the total number of pages. In a numbering pattern, the second number can be omitted. If a function is passed, it will always receive both numbers.
These are logical numbers controlled by the page counter, and may thus
not match the physical numbers. Specifically, they are the
current and the final value of
counter(page)
. See the counter
documentation for more details.
If an explicit footer
(or header
for
top-aligned numbering) is given, the numbering is
ignored.
Default value: none
Show example
#set page(
height: 100pt,
margin: (top: 16pt, bottom: 24pt),
numbering: "1 / 1",
)
#lorem(48)

supplement
A supplement for the pages.
For page references, this is added before the page number.
Default value: auto
Show example
#set page(numbering: "1.", supplement: [p.])
= Introduction <intro>
We are on #ref(<intro>, form: "page")!

number-align
SettableSettableSettable parameters can be set using the set
rule, changing the default value used thereafter.
set
rule, changing the default value used thereafter.The alignment of the page numbering.
If the vertical component is top
, the numbering is placed into the
header and if it is bottom
, it is placed in the footer. Horizon
alignment is forbidden. If an explicit matching header
or footer
is
given, the numbering is ignored.
Default value: center + bottom
Show example
#set page(
margin: (top: 16pt, bottom: 24pt),
numbering: "1",
number-align: right,
)
#lorem(30)

header
The page's header. Fills the top margin of each page.
- Content: Shows the content as the header.
auto
: Shows the page number if anumbering
is set andnumber-align
istop
.none
: Suppresses the header.
Default value: auto
Show example
#set par(justify: true)
#set page(
margin: (top: 32pt, bottom: 20pt),
header: [
#set text(8pt)
#smallcaps[Typst Academy]
#h(1fr) _Exercise Sheet 3_
],
)
#lorem(19)

header-ascent
SettableSettableSettable parameters can be set using the set
rule, changing the default value used thereafter.
set
rule, changing the default value used thereafter.The amount the header is raised into the top margin.
Default value: 30% + 0pt
footer
The page's footer. Fills the bottom margin of each page.
- Content: Shows the content as the footer.
auto
: Shows the page number if anumbering
is set andnumber-align
isbottom
.none
: Suppresses the footer.
For just a page number, the numbering
property typically suffices. If
you want to create a custom footer but still display the page number,
you can directly access the page counter.
Default value: auto
Show example
#set par(justify: true)
#set page(
height: 100pt,
margin: 20pt,
footer: context [
#set align(right)
#set text(8pt)
#counter(page).display(
"1 of I",
both: true,
)
]
)
#lorem(48)

footer-descent
SettableSettableSettable parameters can be set using the set
rule, changing the default value used thereafter.
set
rule, changing the default value used thereafter.The amount the footer is lowered into the bottom margin.
Default value: 30% + 0pt
background
Content in the page's background.
This content will be placed behind the page's body. It can be used to place a background image or a watermark.
Default value: none
Show example
#set page(background: rotate(24deg,
text(18pt, fill: rgb("FFCBC4"))[
*CONFIDENTIAL*
]
))
= Typst's secret plans
In the year 2023, we plan to take
over the world (of typesetting).

foreground
Content in the page's foreground.
This content will overlay the page's body.
Default value: none
Show example
#set page(foreground: text(24pt)[🤓])
Reviewer 2 has marked our paper
"Weak Reject" because they did
not understand our approach...

body
The contents of the page(s).
Multiple pages will be created if the content does not fit on a single page. A new page with the page properties prior to the function invocation will be created after the body has been typeset.
Default value: []