78 lines
2.8 KiB
Markdown
78 lines
2.8 KiB
Markdown
# definitely-not-dhsndd
|
|
|
|
An unofficial template for a thesis or research paper at the DHSN Dresden.
|
|
|
|
The Template is designed after the current guideline for scientific papers by the DHSN Dresden (Version 2017).
|
|
|
|
Examples are under `examples/`.
|
|
|
|
Use it using a global show rule like so:
|
|
|
|
```typst
|
|
#show: dhsn.with(
|
|
topic: "Thema der Arbeit", // Topic and title of the paper
|
|
subtitle: [Art der Arbeit],
|
|
// Kind of the paper (ex. "Belegarbeit im 2. Semester").
|
|
// Look up the specific template description for a bachelorthesis!
|
|
group: "0XY99-0", // Your tutor group
|
|
company-data: [Praxispartner GmbH \ 01234 Stadt], // The address/contact of your training company
|
|
author: "Maxi Musterfrau", // Your full legal name, multiple authors are not supported at the moment.
|
|
author_gender: "M" | "F", // Default: "M". You gender. Will be important for the end statement's signature field text.
|
|
location: "Dresden",
|
|
// this should almost always be "Dresden"
|
|
// when using this template because you are submitting it for DHSN in Dresden
|
|
consultants: ( // List of consultants names
|
|
(
|
|
gender: "M",
|
|
// possible values: "M" (male), "F" (female).
|
|
// This only changes the Description from "Gutachter" to
|
|
// "Gutachterin". When gender is left empty,
|
|
// a gender neutral form "Gutachter/in" is displayed instead.
|
|
name: "Person Eins", // Full name of your consultant
|
|
),
|
|
(
|
|
gender: "F",
|
|
name: "Person Zwei",
|
|
),
|
|
),
|
|
assignment-date: datetime.today(), // The assignment date in the typst datetime format
|
|
submission-date: datetime.today(), // The submission date in the typst datetime format
|
|
bib: bibliography("my_sources.bib"), // The bibliography (in typst bib format, see bibliography() docs)
|
|
)
|
|
|
|
```
|
|
|
|
Currently supported typst features:
|
|
|
|
- Headings
|
|
- Blocks of Text
|
|
- Bibliography and citation
|
|
- Figures
|
|
- Code examples
|
|
- Images
|
|
- Tables
|
|
- other Graphics (ex. using cetz module)
|
|
|
|
## How to cite
|
|
|
|
The guideline requires to use footnotes with a prose citation. To do this effectively use the following Syntax:
|
|
|
|
```typst
|
|
|
|
This content is taken out of a book #footnote[Vgl. @booklabel]
|
|
|
|
This content is taken out of another book #footnote[Vgl. #cite(<anotherbook>), S. 15]
|
|
|
|
````
|
|
|
|
## How to contribute
|
|
|
|
If you have any suggestions/feedback or wnat to submit a pull request, usually you would do it via an issue or a direct pull request on this instance. But registration is not enabled here so the best way to do it would be:
|
|
|
|
1. Clone the repo
|
|
2. Make your changes
|
|
3. Upload the repo to another git server (e.x. github, codeberg,...)
|
|
4. Send a friendly mail to s3005647@edu.dhsn.de with a link to the repo or the .patch file of the commit(s) an attachment.
|
|
5. I will merge your changes into this repo!
|
|
|
|
*If you have any other suggestions besides pull requests, you can also send a mail to s3005647@edu.dhsn.de* |