Skip to content
Discussion options

You must be logged in to vote

You need to tweak the format template to include the page break where you want it, see https://quarto.org/docs/prerelease/1.4/typst.html#custom-formats.
Without having to create a whole new template, you could use the partials, see https://quarto.org/docs/prerelease/1.4/typst.html#template-partials.

See "typst-template.typ" partial.
#let article(
  title: none,
  authors: none,
  date: none,
  abstract: none,
  cols: 1,
  margin: (x: 1.25in, y: 1.25in),
  paper: "us-letter",
  lang: "en",
  region: "US",
  font: (),
  fontsize: 11pt,
  sectionnumbering: none,
  toc: false,
  doc,
) = {
  set page(
    paper: paper,
    margin: margin,
    numbering: "1",
  )
  set par(justify: true)
  set t…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@psads-git
Comment options

Answer selected by psads-git
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
2 participants