tf-freiburg-thesis:0.1.0#5032
Closed
Arturjssln wants to merge 1 commit into
Closed
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Adds a new Typst Universe preview package (tf-freiburg-thesis v0.1.0) providing a Freiburg Faculty of Engineering thesis template, starter project, embedded example content, and required branding assets.
Changes:
- Introduces Typst package manifest (
typst.toml) and licensing/readme metadata for registry publishing. - Adds the main template implementation (
src/main.typ) including layout, title page, sidenotes, citations, and helper environments. - Adds a
typst initstarter template with example chapters, references, and university logo assets.
Reviewed changes
Copilot reviewed 13 out of 18 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| packages/preview/tf-freiburg-thesis/0.1.0/typst.toml | Defines package metadata, compiler constraint, and init template entrypoint. |
| packages/preview/tf-freiburg-thesis/0.1.0/src/template/thesis.typ | Starter project “main” file wiring thesis.with(...) and including example content. |
| packages/preview/tf-freiburg-thesis/0.1.0/src/template/references.bib | Example bibliography entries referenced by the starter template. |
| packages/preview/tf-freiburg-thesis/0.1.0/src/template/content/1_introduction.typ | Example introduction chapter content demonstrating sidenotes. |
| packages/preview/tf-freiburg-thesis/0.1.0/src/template/content/2_related_work.typ | Example related work chapter demonstrating citation helpers. |
| packages/preview/tf-freiburg-thesis/0.1.0/src/template/content/3_background.typ | Example background chapter content. |
| packages/preview/tf-freiburg-thesis/0.1.0/src/template/content/4_methodology.typ | Example methodology chapter content and import guidance. |
| packages/preview/tf-freiburg-thesis/0.1.0/src/template/content/5_experiments.typ | Example chapter showcasing formatting, figures/tables, math, and draft helpers. |
| packages/preview/tf-freiburg-thesis/0.1.0/src/template/content/6_discussion.typ | Example discussion chapter content. |
| packages/preview/tf-freiburg-thesis/0.1.0/src/template/content/A_appendix.typ | Example appendix and AI assistance disclosure content. |
| packages/preview/tf-freiburg-thesis/0.1.0/src/main.typ | Core implementation of the thesis template and exported helper functions. |
| packages/preview/tf-freiburg-thesis/0.1.0/src/assets/template/logo-freiburg/20221107-UFR-logo-white-rgb-FFFFFF.svg | Bundled university logo asset (white). |
| packages/preview/tf-freiburg-thesis/0.1.0/src/assets/template/logo-freiburg/20221107-UFR-logo-black-rgb-000000.svg | Bundled university logo asset (black). |
| packages/preview/tf-freiburg-thesis/0.1.0/src/assets/template/logo-freiburg/20221026-UFR-wortmarke-grundform_Blau_RGB.svg | Bundled university wordmark asset (blue). |
| packages/preview/tf-freiburg-thesis/0.1.0/README.md | Package usage docs, configuration reference, and publishing notes. |
| packages/preview/tf-freiburg-thesis/0.1.0/LICENSE | CC BY 4.0 license notice for the package. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
|
||
| ```typst | ||
| #todo[Add more detail] | ||
| #sidenote[numbered: true][A margin note.] |
Comment on lines
+158
to
+159
| #let citep(..keys) = keys.pos().map(k => cite(k)).join() | ||
| #let citet(..keys) = keys.pos().map(k => cite(k, form: "prose")).join() |
Comment on lines
+525
to
+527
| text(size: section.size, font: sans-font, weight: section.weight)[ | ||
| #counter(heading).display() #it.body | ||
| ] |
Comment on lines
+581
to
+583
| Dissertation zur Erlangung des Doktorgrades \ | ||
| der Technischen Fakultät \ | ||
| der Albert-Ludwigs-Universität Freiburg im Breisgau |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Publishes @preview/tf-freiburg-thesis:0.1.0.