Skip to content

Latest commit

 

History

History
37 lines (32 loc) · 1.87 KB

README.md

File metadata and controls

37 lines (32 loc) · 1.87 KB

INSA - Typst Template

Typst Template for documents from the french engineering school INSA. Includes a CV template which is not from the graphical charter but inspired by it.

Examples

You can find examples for the 4 document types in the exemples folder.

Usage

  1. Download the code from GitHub. To do that, click on the green "Code" button and then "Download ZIP".
    illustration
  2. Open the ZIP archive file and copy the insa-template folder in the directory with your Typst project.
  3. (OPTIONAL) If you are using the Typst web application, you have to first create the insa-template folder by clicking on the little folder button in the "Files" panel.
    illustration
  4. (OPTIONAL) After creating the folder, simply drag all the files you downloaded in it (template.typ, cover.jpg, footer.png, logo.png).
  5. Add this line at the beginning of your Typst file (by default, main.typ):
    #import "insa-template/template.typ" : *
  6. Choose between the 3 available templates: insa, insa-short or insa-report.
  7. Copy the #show rule from the example document of the template you chose to your Typst file. In example:
    #show: doc => insa-short(
      author: [
        Youenn LE JEUNE\
        3 INFO G2.1
      ],
      doc
    )
  8. Enjoy!

Platforms

The template can be used in the web Typst editor and in a local environment.

I personnally prefer to use it in Visual Studio Code with the Typst LSP And Typst Preview extensions.

You can also directly edit your Typst files with a simple text editor and compile it with the Typst CLI. See Installation and Usage sections on the official Typst repository.