a

amsterdammetje-article

@preview

University of Amsterdam Computer Science article template

v0.1.1
MPL-2.0
Template

Package Information

Last Updated
Authors
qu1ncyk
Categories
report
Disciplines
computer-science

Preview

Template preview

1. Get the package

Download the package using the TPIX CLI:

tpix get @preview/amsterdammetje-article:0.1.1

2. Initialize from template

Create a new project from this template:

typst init @preview/amsterdammetje-article:0.1.1

Version History

0.1.1
07b37660a9c5...
0.1.0
4a1b92f87908...

Amsterdammetje Article

(Unofficial) Typst rewrite of LaTeX article template
used in the BSc Computer Science of the University of Amsterdam.

Documentation

Usage

#import "@preview/amsterdammetje-article:0.1.1": article, heading-author, abstract

#set text(lang: "en") // or "nl"

#show: article(
  title: "Title of the document",
  authors: ("Author 1", "Author 2"),
  ids: ("UvAnetID student 1", "UvAnetID student 2"),
  tutor: "Name of the tutor",
  mentor: none,
  lecturer: none,
  group: "Name of the group",
  course: "Name of the course",
  course-id: none,
  assignment-name: "Name of the assignment",
  assignment-type: "Assignment type",
  link-outline: true
)

#abstract[This article proposes groundbreaking...]

= Heading with author name in margin
#heading-author[Edsger Dijkstra]

The link-outline parameter specifies whether links should be surrounded with a cyan box,
similar to what hyperref does by default in LaTeX.
The difference is that hyperref boxes are part of the link itself
and split up at newlines,
whereas boxes around links in this template are as big as the total bounding box of the link.

For the other parameters, see the original template.