├── .github └── workflows │ ├── _reusable-build.yml │ ├── _reusable-get-version.yml │ ├── check.yml │ ├── links.yml │ └── release.yml ├── .gitignore ├── .lycheeignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── cliff.toml ├── guide-to-thesis.pdf ├── guide-to-typst.pdf ├── justfile ├── lib ├── boxes.typ ├── constants.typ ├── helpers.typ ├── i18n-thesis.json ├── img │ ├── check-badge.svg │ ├── check-circle.svg │ ├── check-square.svg │ ├── check.svg │ ├── circle.svg │ ├── file.svg │ ├── fire.svg │ ├── folder.svg │ ├── idea.svg │ ├── important.svg │ ├── info.svg │ ├── rocket.svg │ ├── square.svg │ ├── todo.svg │ ├── warning.svg │ ├── x-circle.svg │ ├── x-square.svg │ └── x.svg ├── items.typ ├── pages-thesis.typ ├── syntax │ ├── VHDL.sublime-syntax │ └── riscv.sublime-syntax └── template-thesis.typ ├── sample.png ├── sample.svg ├── template ├── main │ ├── 00-acknowledgements.typ │ ├── 01-abstract.typ │ ├── 02-introduction.typ │ ├── 03-analysis.typ │ ├── 04-design.typ │ ├── 05-implementation.typ │ ├── 06-validation.typ │ └── 07-conclusion.typ ├── metadata.typ ├── resources │ ├── code │ │ ├── rustfmt.toml │ │ └── uss-rustacean.rs │ ├── img │ │ ├── icon.svg │ │ ├── logos │ │ │ ├── hei-defr.svg │ │ │ ├── hei-en.svg │ │ │ ├── hesso-logo.svg │ │ │ ├── hevs-pictogram.svg │ │ │ ├── swiss_universities-valais-excellence-logo.svg │ │ │ └── synd.svg │ │ ├── placeholder.svg │ │ ├── project-logo.svg │ │ ├── signature.svg │ │ └── specifications.svg │ └── thesis-data.pdf ├── tail │ ├── a-appendix.typ │ ├── bibliography.bib │ ├── bibliography.typ │ └── glossary.typ └── thesis.typ ├── thumbnail.png └── typst.toml /.github/workflows/_reusable-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/.github/workflows/_reusable-build.yml -------------------------------------------------------------------------------- /.github/workflows/_reusable-get-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/.github/workflows/_reusable-get-version.yml -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.github/workflows/links.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/.github/workflows/links.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/.gitignore -------------------------------------------------------------------------------- /.lycheeignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/README.md -------------------------------------------------------------------------------- /cliff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/cliff.toml -------------------------------------------------------------------------------- /guide-to-thesis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/guide-to-thesis.pdf -------------------------------------------------------------------------------- /guide-to-typst.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/guide-to-typst.pdf -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/justfile -------------------------------------------------------------------------------- /lib/boxes.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/lib/boxes.typ -------------------------------------------------------------------------------- /lib/constants.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/lib/constants.typ -------------------------------------------------------------------------------- /lib/helpers.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/lib/helpers.typ -------------------------------------------------------------------------------- /lib/i18n-thesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/lib/i18n-thesis.json -------------------------------------------------------------------------------- /lib/img/check-badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/lib/img/check-badge.svg -------------------------------------------------------------------------------- /lib/img/check-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/lib/img/check-circle.svg -------------------------------------------------------------------------------- /lib/img/check-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/lib/img/check-square.svg -------------------------------------------------------------------------------- /lib/img/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/lib/img/check.svg -------------------------------------------------------------------------------- /lib/img/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/lib/img/circle.svg -------------------------------------------------------------------------------- /lib/img/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/lib/img/file.svg -------------------------------------------------------------------------------- /lib/img/fire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/lib/img/fire.svg -------------------------------------------------------------------------------- /lib/img/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/lib/img/folder.svg -------------------------------------------------------------------------------- /lib/img/idea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/lib/img/idea.svg -------------------------------------------------------------------------------- /lib/img/important.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/lib/img/important.svg -------------------------------------------------------------------------------- /lib/img/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/lib/img/info.svg -------------------------------------------------------------------------------- /lib/img/rocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/lib/img/rocket.svg -------------------------------------------------------------------------------- /lib/img/square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/lib/img/square.svg -------------------------------------------------------------------------------- /lib/img/todo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/lib/img/todo.svg -------------------------------------------------------------------------------- /lib/img/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/lib/img/warning.svg -------------------------------------------------------------------------------- /lib/img/x-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/lib/img/x-circle.svg -------------------------------------------------------------------------------- /lib/img/x-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/lib/img/x-square.svg -------------------------------------------------------------------------------- /lib/img/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/lib/img/x.svg -------------------------------------------------------------------------------- /lib/items.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/lib/items.typ -------------------------------------------------------------------------------- /lib/pages-thesis.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/lib/pages-thesis.typ -------------------------------------------------------------------------------- /lib/syntax/VHDL.sublime-syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/lib/syntax/VHDL.sublime-syntax -------------------------------------------------------------------------------- /lib/syntax/riscv.sublime-syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/lib/syntax/riscv.sublime-syntax -------------------------------------------------------------------------------- /lib/template-thesis.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/lib/template-thesis.typ -------------------------------------------------------------------------------- /sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/sample.png -------------------------------------------------------------------------------- /sample.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/sample.svg -------------------------------------------------------------------------------- /template/main/00-acknowledgements.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/template/main/00-acknowledgements.typ -------------------------------------------------------------------------------- /template/main/01-abstract.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/template/main/01-abstract.typ -------------------------------------------------------------------------------- /template/main/02-introduction.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/template/main/02-introduction.typ -------------------------------------------------------------------------------- /template/main/03-analysis.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/template/main/03-analysis.typ -------------------------------------------------------------------------------- /template/main/04-design.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/template/main/04-design.typ -------------------------------------------------------------------------------- /template/main/05-implementation.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/template/main/05-implementation.typ -------------------------------------------------------------------------------- /template/main/06-validation.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/template/main/06-validation.typ -------------------------------------------------------------------------------- /template/main/07-conclusion.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/template/main/07-conclusion.typ -------------------------------------------------------------------------------- /template/metadata.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/template/metadata.typ -------------------------------------------------------------------------------- /template/resources/code/rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/template/resources/code/rustfmt.toml -------------------------------------------------------------------------------- /template/resources/code/uss-rustacean.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/template/resources/code/uss-rustacean.rs -------------------------------------------------------------------------------- /template/resources/img/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/template/resources/img/icon.svg -------------------------------------------------------------------------------- /template/resources/img/logos/hei-defr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/template/resources/img/logos/hei-defr.svg -------------------------------------------------------------------------------- /template/resources/img/logos/hei-en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/template/resources/img/logos/hei-en.svg -------------------------------------------------------------------------------- /template/resources/img/logos/hesso-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/template/resources/img/logos/hesso-logo.svg -------------------------------------------------------------------------------- /template/resources/img/logos/hevs-pictogram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/template/resources/img/logos/hevs-pictogram.svg -------------------------------------------------------------------------------- /template/resources/img/logos/swiss_universities-valais-excellence-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/template/resources/img/logos/swiss_universities-valais-excellence-logo.svg -------------------------------------------------------------------------------- /template/resources/img/logos/synd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/template/resources/img/logos/synd.svg -------------------------------------------------------------------------------- /template/resources/img/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/template/resources/img/placeholder.svg -------------------------------------------------------------------------------- /template/resources/img/project-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/template/resources/img/project-logo.svg -------------------------------------------------------------------------------- /template/resources/img/signature.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/template/resources/img/signature.svg -------------------------------------------------------------------------------- /template/resources/img/specifications.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/template/resources/img/specifications.svg -------------------------------------------------------------------------------- /template/resources/thesis-data.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/template/resources/thesis-data.pdf -------------------------------------------------------------------------------- /template/tail/a-appendix.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/template/tail/a-appendix.typ -------------------------------------------------------------------------------- /template/tail/bibliography.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/template/tail/bibliography.bib -------------------------------------------------------------------------------- /template/tail/bibliography.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/template/tail/bibliography.typ -------------------------------------------------------------------------------- /template/tail/glossary.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/template/tail/glossary.typ -------------------------------------------------------------------------------- /template/thesis.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/template/thesis.typ -------------------------------------------------------------------------------- /thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/thumbnail.png -------------------------------------------------------------------------------- /typst.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hei-templates/hei-synd-thesis/HEAD/typst.toml --------------------------------------------------------------------------------