A simple, flexible, responsive, ATS-friendly, and click-worthy resume. Extra cover letter and extendable to a CV.
This Typst Resume template allows for writing resumes, CVs, and cover letters fast. The core is borrowed from the guided-resume-starter-cgc template with extra features, more flexibility, and formatting improvements.
For advice on writing an effective resume, this small write-up by the guided-resume-starter-cgc template author is quite helpful.
For advice on writing an effective cover letter, this guide by UMich ECRC is quite helpful.
NOTE: See the official package repository on the Typst Universe
NOTE: This repository is not an exact mirror of the Typst Universe package since this a development repository.
- Open the Typst App on any supported platform
- In the Dashboard, select Start from template
- Search for clickworthy-resume and select it
- Name the project and Create
- The default editor will show the
resume.typtemplate. To work with thecv.typandcover-letter.typtemplates, click the Explore files from the top left of the view. - Edit the desired template and export it to download your version.
- Install Typst
- Create a workspace in the location of choice and run
typst init @preview/clickworthy-resumeto create a template. - Edit the desired template, including
resume,cv, orcover-letterand runtypst compile <template>.typto generate a pdf version or see the Typst guide for more options.
The provided templates show all functions that the package supports with their respective parameters, the following documentation is provided for completeness.
All function parameters are technically optional for better customization
Most functions provide a hide flag to make a clean *.typ file including all information in one place without having to comment-out unwanted entries for a specific resume version
The resume is generated using a customizable resume function that accepts various parameters for layout, theme, and content. It defines the document’s formatting, header, and professional summary section, followed by the main content body.
author: Your full namelocation: City, state/province, and countrycontacts: A list of links or contact infosummary: A short professional summarytheme-color: Accent color for headings (default:#26428b)font: Font family used throughout the resume (default:"New Computer Modern")font-size: Base font size (default:11pt)lang: Document language (default:"en")margin: Page margins (default:(top: 1cm, bottom: 0cm, left: 1cm, right: 1cm))
#show: resume.with(
author: "Dr. Alex Morgan",
location: "San Francisco, CA",
contacts: (
[#link("mailto:alex.morgan@example.com")[#"alex.morgan@example.com"]],
[#link("https://github.com/alexm-dev")[#"github.com/alexm-dev"]],
[#link("https://linkedin.com/in/alex-morgan")[#"linkedin.com/in/alex-morgan"]],
),
summary: "Senior systems engineer with 20+ years of experience in embedded systems, real-time pipelines, and fault-tolerant platforms. Proven leader in innovation, mentorship, and research-to-production delivery.",
theme-color: rgb("#cc0000"),
font: "New Computer Modern",
font-size: 11pt,
lang: "en",
margin: (
top: 1cm,
bottom: 0cm,
left: 1cm,
right: 1cm,
),
)The edu function formats a single educational entry, including institution name, degrees, GPA, and additional notes. You can list multiple degrees per institution, and control visibility with the hide flag.
institution: The name of the school or universitydate: The graduation date or durationdegrees: A list of degree-level and field tuples, e.g.("BSc", "Computer Science")gpa: GPA stringlocation: City/state/country of institutionextra: Any extra info (e.g. "Thesis with distinction")hide: Boolean flag to skip rendering this entry (default:false)
#show: edu(
institution: "University of California, Berkeley",
date: "2011–2015",
degrees: (
("BSc", "Electrical Engineering & Computer Science"),
("Minor", "Philosophy"),
),
gpa: "3.92",
location: "Berkeley, CA",
extra: "Thesis with distinction",
hide: false,
)The exp function formats a professional experience entry, showing the role title, organization, date, location, and descriptive bullet points or details. You can control visibility using the hide flag.
title: Job title or roleorganization: Company or institution namedate: Time period for the rolelocation: Location of the jobdetails: A block or list of content to describe your workhide: Boolean flag to skip rendering this entry (default:false)
#exp(
title: "Embedded Software Engineer",
organization: "MicroNova Inc.",
date: "2001 - 2006",
location: "Austin, TX",
details: [
- Delivered firmware for low-latency DSP filters used in medical and automotive devices.
- Ported real-time schedulers to custom embedded targets using bare-metal C.
],
hide: true,
)The pub function formats a publication citation entry using a simple yet common style. It supports highlighting a specific author, linking the title via DOI, and adding extra notes. Use the hide flag to skip rendering.
NOTE: the style used for publication references appears to be the most widely used format. For more standarized/advanced citation styles see the Publication List section
authors: A list of author namesbold-author: One name to emphasize in boldtitle: Title of the publicationvenue: Conference, journal, or publisher nameyear: Year of publicationdoi-link: DOI string without the https:// prefix (e.g."doi.org/...")extra: Any additional note or status (e.g. "Best Paper Award")hide: Boolean flag to skip rendering this entry (default:false)
#pub(
authors: (
"Alex Morgan",
"Jordan Michaels",
"Taylor Chen",
),
bold-author: "Jordan Michaels",
title: "Cross-Domain Feature Alignment in Multilingual Speech Systems",
venue: "ACL",
year: "2023",
doi-link: "doi.org/10.18653/v1/2023.acl-long.123",
extra: "Best Paper Award",
hide: false,
)The pub-list function displays a styled list of publications using a .bib or .yml file.
It uses Typst’s native bibliography rendering engine and supports multiple citation styles such as IEEE, APA, and MLA. See the for more info about .bib or .yml bibliography definition files or different available styles.
bib: A reference tobibliographyfunction with a path to a.bibor.ymlfiles (e.g.,bibliography("publications.bib"))style(optional): Citation formatting style. Accepts styles like"ieee","apa","mla", and more (default:ieee)
#pub-list(
bib: bibliography("assets/publications.bib"),
style: "ieee"
)The skills function displays categorized lists of skills or technologies. Each entry consists of a label (e.g. "Expertise", "Software") and a list of items shown inline and separated by commas. Each category is rendered on its own line.
areas: A list of tuples, each containing:- a category label (e.g. "Languages", "Tools")
- a list of individual skills (each as a string or inline element)
#show: skills((
("Expertise", (
[Distributed Systems],
[Embedded Security],
[FPGA Architectures],
[Technical Leadership],
)),
("Software", (
[C/C++],
[Rust],
[SystemVerilog],
[Docker],
[Git],
)),
("Languages", (
[Python],
[C/C++],
[Rust],
[Shell],
)),
))For CVs with more than one page, use #pagebreak() where appropriate for page-splitting if the value for bottom of the margin field in #show: resume.with() is too small to make a clean split between items.
#pub(
authors: (
"Jordan Michaels",
"Alex Morgan",
"Taylor Chen",
"Emily Zhang",
),
bold-author: "Jordan Michaels",
title: "Robust Distributed Scheduling in Adversarial Edge Environments",
venue: "ACM MobiCom",
year: "2025",
doi-link: "doi.org/10.1145/9999999.9999999",
extra: "To appear",
)
// Page break for readability
#pagebreak()
#pub(
authors: (
"Taylor Chen",
"Emily Zhang",
"Jordan Michaels",
"Alex Morgan",
),
bold-author: "Jordan Michaels",
title: "Resource-Conscious Model Compression for Embedded Speech Translation",
venue: "NeurIPS",
year: "2024",
doi-link: "doi.org/10.48550/arXiv.2406.00123",
)The cover letter is generated using a customizable cover-letter function that accepts various parameters for layout, and content. It defines the document’s formatting, header, followed by the main content body, then finally it automatically provides a Sign-Off.
author: Your full namelocation: City, state/province, and countrycontacts: List of links or contact infodate: Date to display in the header (default: today’s date)addressee-name: Recipient’s full nameaddressee-institution: Organization/Company nameaddressee-address: Street addressaddressee-city: Cityaddressee-state: State/Provinceaddressee-country: Countryaddressee-zip: Postal codefont: Font family used (default:"New Computer Modern")font-size: Base font size (default:11pt)lang: Document language (default:"en")margin: Page margins (default:(top: 1cm, bottom: 1cm, left: 1cm, right: 1cm))
#show: cover-letter.with(
author: "Dr. Alex Morgan",
location: "San Francisco, CA",
contacts: (
[#link("mailto:alex.morgan@example.com")[#"alex.morgan@example.com"]],
[#link("https://github.com/alexm-dev")[#"github.com/alexm-dev"]],
[#link("https://linkedin.com/in/alex-morgan")[#"linkedin.com/in/alex-morgan"]],
),
date: datetime.today().display(),
addressee-name: "Dr. Jane Smith",
addressee-institution: "Embedded Innovations Inc.",
addressee-address: "123 Innovation Drive",
addressee-city: "Tech City",
addressee-state: "CA",
addressee-country: "",
addressee-zip: "90210",
font: "New Computer Modern",
font-size: 11pt,
lang: "en",
margin: (
top: 1cm,
bottom: 1cm,
left: 1cm,
right: 1cm,
),
)- Typst CLI: Typst
- Linting: package-check
- Testing: tytanic
-
src/contains the source code of the library.src/lib.typis a wrapper import for other*.typsources for the ease of importing. -
template/contains the templates/examples of using clickworthy-resume. It is what the user of clickworthy-resume template is expected to see when runningtypst init @preview/clickworthy-resumeand therefore it imports#import "@preview/clickworthy-resume:1.0.1": * -
tests/contains the tests for each template intemplates/. Each test has aref/that contains a referencepngoutput. Each test has atest.typ, which is a mirror of the templates intemplate/except that they import#import "../../src/lib.typ": *locally. See the tytanic book for more info.NOTE: As stated above, all
test.typfiles are mirror of templates intemplate/except thecover-lettertest since it involves#let date = datetime.today().display(), which makes the test undeterminitic on different systems/CI. On thetest.typforcover-letter, it's changed to a constant date string. See the tytanic book write-up on this issue and similar test discrepancy issues. -
typst.tomlcontains the project's manifest. -
thumbnail.pngcontains the projects' thumbnail on the Typst Universe. -
Makefilecontains useful targets for local development.❓ Available Makefile commands: make Lint, update tests, test, install, and update thumbnail (default) make install Install the package locally to Typst's data directory make uninstall Remove the installed package version make lint Run typst-package-check on the package to lint make test Run tests using tt (tytanic) make update-test Update tests references, ref/, using tt (tytanic) make thumbnail Generate the thumbnail image for the package make help Show this help message
- To change/update the core library logic,
*.typfiles insrc/should be modified. A new library file<feature>.typshould be added to thelib.typwrapper. - Now, these changes will not be reflected in the templates in
template/since it imports#import "@preview/clickworthy-resume:1.0.1": * - Therefore, local testing should be done by either:
- using
make installafter each change to install the package locally. Then temporarily changing@previewto@localin the import. - importing the
lib.typdirectly using the relative path:#import "../src/lib.typ": *
- using
NOTE: The package is installed locally in the
Typst data directory(~/.local/share on linux) according to the Typst local packaging guide
NOTE: If the second method is used for development and testing, it's still highly recommended to install the package locally and try it, check the installation directory, and so on, to get a feel of how the package will look to the end user.
- If library source is changed with any extra functionality, functions, etc., ideally, they should be utilized in the templates in
template/. Also, documentation in the How to Edit section should be updated with the new functions - If a new template is created,
<new-template.typ>,add a test for it using tytanic:tt new new-templateand copy the template content to thetests/<new-template>/test.typsimilar to othertest.typfiles. - If a template is modified, update its corresponding
test.typand runmake update-testmake test - If the
resumetemplate is updated, on on top of updatingtests, update the thumbnail by runningmake thumbnail - Lint by running
make lint - Update version in
typst.tomland anywhere where the older version number is used, for example, README, templates, etc.. - Check for typos using a tool like typos
- Install the package locally and test it. Install by running
make installand test by creating a temp directory and runningtypst init @local/clickworthy-resume:<version> - If the build or test flows change, i.e.
Makefilenew targets and so on, update CIci.ymlaccordingly when appropriate.
- Multilingual Support: Add support for popular international languages
- Non-Linux Makefile Support: Add support for using the
Makefileon non-linux OS