This is a reusable CSH themed Typst template which can be used to create professional looking CSH documents.
Examples of usable can be seen in examples/
If you are inexperienced in Typst, the following resources are fantastic to understanding Typst's capabilities:
Create your document in the src/ folder, this will be your working space. From here, use the following code to implement the CSH Typst template:
#import "../template/lib.typ": csh
#show: csh.with(
title: "TITLE",
subtitle: "SUBTITLE",
author: "NAMES"
)Your can now use the space below to put your Typst document.
The document can be compiled into a PDF with:
typst compile ./src/test.typ --root ../You can also compile with every file change with:
typst watch ./src/test.typ --root ../Assuming you are in the src directory.
This project is licensed under the Mozilla Public License 2.0 (MPL-2.0).
Under this license, any document created with the code in the repository is NOT covered by the terms of the MPL-2.0 However, if you modify files covered by the MPL and distribute them, you must:
- Keep those modified files under the MPL-2.0 license
- Make the source code for modified MPL-covered files pubicly available
- Retain existing copyright and license notices
You are not required to open-source your entire project unless it directly includes modified MPL-covered files.
For full license details, see the LICENSE file or visit:
https://www.mozilla.org/en-US/MPL/2.0/