Package Information
- Last Updated
- Minimum Typst Version
- 0.12.0
- Authors
- Typst GmbH
- Categories
- paper
- Disciplines
- mathematics
Preview
1. Get the package
Download the package using the TPIX CLI:
tpix get @preview/unequivocal-ams:0.1.22. Initialize from template
Create a new project from this template:
typst init @preview/unequivocal-ams:0.1.2unequivocal-ams
A single-column paper for the American Mathematical Society. The template comes
with functions for theorems and proofs. It also is a nice starting point for a
classy tech report or thesis.
Usage
You can use this template in the Typst web app by clicking "Start from template"
on the dashboard and searching for unequivocal-ams.
Alternatively, you can use the CLI to kick this project off using the command
typst init @preview/unequivocal-ams
Typst will create a new directory with all the files needed to get you started.
Configuration
This template exports the ams-article function with the following named arguments:
title: The paper's title as content.authors: An array of author dictionaries. Each of the author dictionaries
must have anamekey and can have the keysdepartment,organization,
location, andemail. All keys accept content.abstract: The content of a brief summary of the paper ornone. Appears at
the top of the first column in boldface.paper-size: Defaults tous-letter. Specify a paper size
string to
change the page format.bibliography: The result of a call to thebibliographyfunction ornone.
Specifying this will configure numeric, Springer MathPhys-style citations.
The function also accepts a single, positional argument for the body of the
paper.
The template will initialize your package with a sample call to the ams-article
function in a show rule. If you, however, want to change an existing project to
use this template, you can add a show rule like this at the top of your file:
#import "@preview/unequivocal-ams:0.1.2": ams-article, theorem, proof
#show: ams-article.with(
title: [Mathematical Theorems],
authors: (
(
name: "Ralph Howard",
department: [Department of Mathematics],
organization: [University of South Carolina],
location: [Columbia, SC 29208],
email: "howard@math.sc.edu",
url: "www.math.sc.edu/~howard"
),
),
abstract: lorem(100),
bibliography: bibliography("refs.bib"),
)
// Your content goes below.