Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

mode name
drwxr-xr-x template/
-rw-r--r-- LICENSE
-rw-r--r-- README.md
-rw-r--r-- template.typ
-rw-r--r-- thumbnail.png
-rw-r--r-- typst.toml
README

modern-mla

A typst template for use in MLA formats.

Usage

Method 1: Using typst init (Recommended)

Initialize a new project using this template:

typst init @preview/modern-mla

Or specify a custom directory name:

typst init @preview/modern-mla my-paper

Method 2: Manual import

Import the template in your Typst document:

#import "@preview/modern-mla:0.1.0": *

#show: mla.with(
  title: "Your Paper Title",
  author: "Your Name",
  professor: "Professor Name",
  course: "Course Name",
  date: datetime.today(),
)

// Your content here