Pages
Learn how to split your document into pages with different layouts.
Novem is currently in closed alpha. This documentation is incomplete and subject to change.
{{ page # page break
orient: landscape # page orientation
cols: 2 # number of columns
type: fp # page type
}}
The {{ page }} section creates a new page in your document. Each page can
have its own orientation, column layout and type. Content before the first
{{ page }} becomes page 0.
The page section is always self-closing — there is no {{ /page }} tag.
keyword: orient / orientation / o
options: portrait / p / port | landscape / l / land
default: portrait
Controls whether the page is portrait (tall) or landscape (wide).
keyword: cols
options: 1 | 2 | 3
default: 1
Sets the number of columns for the page layout. Content flows across columns left to right.
keyword: type
options: fp | index | centered | blank
Controls the page type:
fp— front page, typically used for cover pagesindex— index or table of contents stylecentered— centered content layoutblank— empty page
keyword: footer
options: true | false | "Custom footer text"
default: true
Controls whether a footer is displayed and optionally sets custom footer text.
keyword: pnum
options: "auto" | "custom string"
Overrides the page number display.
keyword: overflow
options: auto
Controls whether content that exceeds the page should automatically create new pages.
keyword: ref
options: FQNP | shortname | local path | global path
Embeds another novem visual as a full-page element. Supports references to
documents (/d/), plots (/p/) and grids (/g/). The embedded visual
replaces the page content entirely.
# Cover Page
{{ page
orient: portrait
}}
# Chapter One
Content for chapter one.
{{ page
orient: landscape
cols: 2
}}
## Data Overview
Two-column landscape layout for charts.
{{ page
ref: /u/novem_demo/d/mkt_research
}}
{{ page
orient: landscape
ref: /u/novem_demo/g/nei_rgn_dash
}}
---
title: Quarterly Review
---
# Q4 2024 Review
{{ page
orient: portrait
type: fp
}}
## Executive Summary
{{ page
orient: landscape
cols: 2
}}
## Charts and Data
{{ page
orient: portrait
type: centered
}}
## Conclusions