{"id":47612138,"url":"https://github.com/maciejzujtu/adversa-notes","last_synced_at":"2026-04-03T22:02:18.252Z","repository":{"id":343787160,"uuid":"1179160834","full_name":"maciejzujtu/adversa-notes","owner":"maciejzujtu","description":"Typst template made for taking course notes.","archived":false,"fork":false,"pushed_at":"2026-03-21T15:00:07.000Z","size":607,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-02T03:36:14.258Z","etag":null,"topics":["notes","template","typst"],"latest_commit_sha":null,"homepage":"","language":"Typst","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/maciejzujtu.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-11T18:46:26.000Z","updated_at":"2026-03-29T13:42:54.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/maciejzujtu/adversa-notes","commit_stats":null,"previous_names":["maciejzujtu/adversa","maciejzujtu/adversa-notes"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/maciejzujtu/adversa-notes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maciejzujtu%2Fadversa-notes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maciejzujtu%2Fadversa-notes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maciejzujtu%2Fadversa-notes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maciejzujtu%2Fadversa-notes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maciejzujtu","download_url":"https://codeload.github.com/maciejzujtu/adversa-notes/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maciejzujtu%2Fadversa-notes/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31379453,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-03T21:40:47.592Z","status":"ssl_error","status_checked_at":"2026-04-03T21:40:05.436Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["notes","template","typst"],"created_at":"2026-04-01T20:33:29.192Z","updated_at":"2026-04-03T22:02:18.247Z","avatar_url":"https://github.com/maciejzujtu.png","language":"Typst","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Adversa Notes\n\n**Adversa** is a [Typst](https://typst.app) template intended for taking course notes, designed with STEM-related subjects in mind, mainly mathematics and computer science. The inspiration and reason for its purpose comes from other typst templates such as `minimal-notes` and `mousse-notes` lacking certain features that I found necessary, thus this template is a tweaked mash up of them.\n\n_dummy page preview_\n\n![dummy thumbnail page](thumbnail-page.svg)\n\n## Installation\nTo start using the template, you must first install it locally to your `typst/packages/local/` directory. To make this process as seamless as possible you can use [typship](https://github.com/sjfhsjfh/typship) tool for typst package management and run the following command in your CLI.\n```bash\n$ typship download https://github.com/maciejzujtu/adversa\n```\nAfter successful installation you can view a dummy page by creating a directory that has few dummy files to showcase functions that this template has to offer. To download the template simply run:\n```bash\n$ typst init @local/adversa \u003cpath\u003e\n```\nI'm planning to submit a fork request to `typst/packages` repository in order to hopefully have this template added onto the `@preview` namespace. For now though it's only accessible by locally installing it on your device.\n\nWill do in due time once I think it's good enough.\n\n## Documentation\nTo add the template to your typst notes simply include the import statement as well as `adversa` function with few arguments named as follows:\n\n- `title`  (_optional_) -  The paper's title page located at the very top of the title page,\n- `subtitle` (_optional_) - The paper's subtitle page located right under `title`, \n- `author` (_optional_) -  The paper's author located at the bottom of title page,\n- `show-date` (_optional_) - Current date located under the `author` field.\n\n**REMARK**.\nIt's worth noting that this template uses [codly](https://typst.app/universe/package/codly) package to highlight code snippets via the `#code` block. So if you are planning on adding any code snippets to your typst files whilst you use this template make sure to also add the commented out `show` rules.\n\n```typ\n#import \"@preview/adversa:0.1.2\": *\n// #import \"@preview/codly-languages:0.1.1\": *  \u003c- Code snippets import\n// #import \"@preview/codly:1.3.0\": *            \u003c- Icons pack import\n\n#show: adversa.with(\n  title: [Algorithms and Data Structures],\n  subtitle: [Comprehensive set of notes],\n  contents-title: [Contents],\n  author: \"Dummy\",\n  show-date: true\n)\n\n// #show: codly-init                    \u003c- Code snippets \n// #codly(languages: codly-languages)   \u003c- Icons pack\n```\n\nAfter including the following rules as well as imports the title page will look like the one below.\n\n_dummy title preview_\n\n![dummy thumbnail title](thumbnail-title.svg)\n\n## Further implementations\n\n- Adhere to SemVer versioning convention\n- Fork it eventually for typst\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaciejzujtu%2Fadversa-notes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaciejzujtu%2Fadversa-notes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaciejzujtu%2Fadversa-notes/lists"}