t

tufte-memo

@preview

A memo document template inspired by the design of Edward Tufte's books.

v0.1.2
MIT
Template

Package Information

Last Updated
Authors
Noah Gula
Categories
report

Preview

Template preview

1. Get the package

Download the package using the TPIX CLI:

tpix get @preview/tufte-memo:0.1.2

2. Initialize from template

Create a new project from this template:

typst init @preview/tufte-memo:0.1.2

Version History

0.1.2
2f196bc3bb1e...
0.1.1
443db6f4f90d...
0.1.0
cf68a38ca5b3...

tufte-memo

A memo document template inspired by the design of Edward Tufte's books for the Typst typesetting program.

For usage, see the usage guide here.

The template provides handy functions: template, note, and wideblock. To create a document with this template, use:

#import "@preview/tufte-memo:0.1.2": *

#show: template.with(
    title: [Document Title],
    authors: (
        (
        name: "Author Name",
        role: "Optional Role Line",
        affiliation: "Optional Affiliation Line",
        email: "email@company.com"
        ),
    )
)
...

additional configuration information is available in the usage guide.

The note() function provides the ability to produce sidenotes next to the main body content. It can be called simply with #note[...]. Additionally, wideblock() expands the width of its content to fill the full 6.5-inch-wide space, rather than be compressed in to a four-inch column. It is simply called with wideblock[...].