{"id":50755375,"url":"https://github.com/pulp-platform/iis-typst","last_synced_at":"2026-06-11T04:30:28.826Z","repository":{"id":346229577,"uuid":"1184143723","full_name":"pulp-platform/iis-typst","owner":"pulp-platform","description":"IIS templates in Typst","archived":false,"fork":false,"pushed_at":"2026-03-26T17:51:01.000Z","size":2982,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-27T06:10:11.624Z","etag":null,"topics":["typst","typst-template"],"latest_commit_sha":null,"homepage":"","language":"Typst","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pulp-platform.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-17T09:46:48.000Z","updated_at":"2026-03-26T17:51:05.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/pulp-platform/iis-typst","commit_stats":null,"previous_names":["fischeti/iis-typst","pulp-platform/iis-typst"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/pulp-platform/iis-typst","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pulp-platform%2Fiis-typst","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pulp-platform%2Fiis-typst/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pulp-platform%2Fiis-typst/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pulp-platform%2Fiis-typst/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pulp-platform","download_url":"https://codeload.github.com/pulp-platform/iis-typst/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pulp-platform%2Fiis-typst/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34183109,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-11T02:00:06.485Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["typst","typst-template"],"created_at":"2026-06-11T04:30:28.138Z","updated_at":"2026-06-11T04:30:28.819Z","avatar_url":"https://github.com/pulp-platform.png","language":"Typst","funding_links":[],"categories":[],"sub_categories":[],"readme":"# IIS Typst Templates\n\nTypst templates for documents at the\n[Integrated Systems Laboratory (IIS)](https://iis.ee.ethz.ch), ETH Zurich.\n\n## Templates\n\n| Package | Description | Audience |\n|---|---|---|\n| [`ethz-iis-dissertation`](https://typst.app/universe/package/ethz-iis-dissertation) | PhD dissertation | PhD students |\n| [`ethz-iis-thesis`](https://typst.app/universe/package/ethz-iis-thesis) | Master / Bachelor / Semester thesis report | Students |\n| [`ethz-iis-research-plan`](https://typst.app/universe/package/ethz-iis-research-plan) | PhD research plan (first-year report) | PhD students |\n| [`ethz-iis-assignment`](https://typst.app/universe/package/ethz-iis-assignment) | Thesis assignment sheet | Advisors |\n\n## Getting Started\n\n\u003e [!TIP]\n\u003e The easiest way is to click one of the links above or search for `ethz-iis` on\n\u003e [Typst Universe](https://typst.app/universe) and click **Start from template** to\n\u003e create a new project in the Typst web app directly.\n\nAlternatively, initialize a local project from the command line with `typst init`:\n\n```sh\ntypst init @preview/ethz-iis-dissertation    # PhD dissertation\ntypst init @preview/ethz-iis-thesis          # thesis report\ntypst init @preview/ethz-iis-research-plan   # research plan\ntypst init @preview/ethz-iis-assignment      # assignment sheet\n```\n\n## Development\n\nClone the repository. A [`justfile`](justfile) provides all common recipes:\n\n```sh\njust link \u003cpkg\u003e                     # install a package under @local/ethz-iis-*\njust compile \u003cpkg\u003e                  # compile a template\njust fmt                            # format all .typ files\njust release \u003cpkg\u003e                  # bump version from CHANGELOG, tag, and push\njust prepare \u003cpkg\u003e /path/to/fork    # copy to typst/packages fork for submission\n```\n\n\u003e [!NOTE]\n\u003e Most recipes have a `-all` variant (e.g. `just compile-all`). Run `just` to list all available recipes.\n\nRun `just link \u003cpkg\u003e` once after cloning to install packages into Typst's `@local`\nnamespace. Then change `@preview/` to `@local/` in a template's `main.typ` to\npick up local changes on every compile:\n\n```sh\ngit clone https://github.com/pulp-platform/iis-typst\ncd iis-typst\njust link \u003cpkg\u003e\n# in template/main.typ: change @preview/ethz-iis-* to @local/ethz-iis-*\njust compile \u003cpkg\u003e\n```\n\nSee [RELEASING.md](RELEASING.md) for the full release and publishing workflow.\n\nEach template lives in its own subdirectory and is an independent Typst package:\n\n```\n\u003cpackage\u003e/\n├── typst.toml            # package manifest\n├── lib.typ               # template implementation\n├── shared/               # symlink → ../shared/ (utils + ETH figures)\n└── template/             # example project copied on `typst init`\n    └── main.typ\n```\n\nShared utilities (`utils.typ`) and ETH brand assets (`figures/`) live in\n`shared/` and are symlinked into each package. The `just prepare` recipe\ndereferences symlinks and rewrites `@local/` → `@preview/` imports when\ncopying to the Typst Universe fork.\n\n## License\n\nApache-2.0 — see [LICENSE](LICENSE).\n\n\u003e [!WARNING]\n\u003e The ETH Zürich logo (`shared/figures/eth_logo_kurz_pos.svg`) is a trademark of\n\u003e ETH Zürich and is **not** covered by the Apache-2.0 license. It is reproduced as\n\u003e publicly available on [Wikimedia Commons](https://commons.wikimedia.org/wiki/File:ETH_Z%C3%BCrich_Logo_black.svg).\n\u003e Users must comply with [ETH Zürich's branding guidelines](https://ethz.ch/staffnet/en/service/communication/corporate-design/eth-logo.html).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpulp-platform%2Fiis-typst","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpulp-platform%2Fiis-typst","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpulp-platform%2Fiis-typst/lists"}