Welcome to Qareeb Typst templates. This collection ensures that all our internal and external documents—from technical reports to invoices—remain consistent, professional, and easy to produce.
To use a template from this repository, you can either copy the folder or reference it locally.
- Install Typst: Ensure you have the Typst CLI installed.
- Clone this repo:
git clone https://github.com/qareeb-io/typst-templates.git- Compile a document:
typst compile typst-templates/examples/document.typ output.pdf| Name | Description | Path |
|---|---|---|
| Engineering Documents | Standard internal engineering documents. | /template.typ |
Each template is designed as a function. Instead of editing the template file directly, you should import it into your main.typ.
#import "./template.typ": *
#show: document.with(
company_legal: "Qareeb SARL",
contact_info: "contact@qareeb.io",
title: "Some Example Document",
doc_id: "QVIS-SED-001",
rev: "01",
date: datetime.today(),
category: "Qvision",
sub_category: "Example Reference",
status: [
#admonition(type: "IMPORTANT")[
This document is an example
]
],
)
= Introduction
Your content starts here...
export TYPST_FONT_PATHS="<template dir>/assets/fonts"/assets: Common logos, fonts, and icons./examples: Some helpful examples.
Note: These templates are for internal company use only. Please do not share with external parties without permission.