Compare commits
3 Commits
a7f4937f9e
...
bbd88494d7
Author | SHA1 | Date |
---|---|---|
Sven Vogel | bbd88494d7 | |
Sven Vogel | b842747c3b | |
Sven Vogel | 25adc2df91 |
|
@ -19,6 +19,10 @@
|
||||||
This template includes designs for a titlepage, confidantiality statement, declaration of authorship and more with a consistent design inspired by various unofficial works made by students at DHBW. Layout and the choise fonts are based on the unofficial [supercharged-dhbw](https://github.com/DannySeidel/typst-dhbw-template) Typst template. It comes with automatic generation of outlines for figures, tables, code snippets and appendices.
|
This template includes designs for a titlepage, confidantiality statement, declaration of authorship and more with a consistent design inspired by various unofficial works made by students at DHBW. Layout and the choise fonts are based on the unofficial [supercharged-dhbw](https://github.com/DannySeidel/typst-dhbw-template) Typst template. It comes with automatic generation of outlines for figures, tables, code snippets and appendices.
|
||||||
The template can generate sections for a glossary, combinging acronyms and technical terms into a singular section.
|
The template can generate sections for a glossary, combinging acronyms and technical terms into a singular section.
|
||||||
|
|
||||||
|
## DHBW DOCX template
|
||||||
|
|
||||||
|
The official [DHBW template for Word](https://blog.fakultaet-technik.de/wp-content/uploads/2015/06/Studienarbeitsvorlage.docx) was used a strong inspiration but not as base template.
|
||||||
|
|
||||||
## Format
|
## Format
|
||||||
All pages have a margin of 2.5cm between header/footer/content and the page border.
|
All pages have a margin of 2.5cm between header/footer/content and the page border.
|
||||||
Header and footer do not overlap into this margin in order to conform to university requirements.
|
Header and footer do not overlap into this margin in order to conform to university requirements.
|
||||||
|
|
|
@ -18,8 +18,10 @@
|
||||||
if "appendices" in config.thesis {
|
if "appendices" in config.thesis {
|
||||||
pagebreak(weak: true)
|
pagebreak(weak: true)
|
||||||
|
|
||||||
|
// appendix will be invisible on the appendecies page
|
||||||
|
// but still listed in the ToC
|
||||||
|
show heading: it => []
|
||||||
heading(level: 1, numbering: none, title)
|
heading(level: 1, numbering: none, title)
|
||||||
v(-2em)
|
|
||||||
|
|
||||||
// APA style appendix
|
// APA style appendix
|
||||||
show heading: it => {
|
show heading: it => {
|
||||||
|
|
|
@ -67,7 +67,7 @@
|
||||||
stroke: (x, y) => (
|
stroke: (x, y) => (
|
||||||
left: none,
|
left: none,
|
||||||
right: none,
|
right: none,
|
||||||
top: if y == 0 { 1.5pt } else if y < 2 { 1pt } else { 0pt },
|
top: if y == 0 { 1.5pt } else if y < 2 { 1pt } else { 0.5pt },
|
||||||
bottom: if y == 0 { 1pt } else { 1.5pt } ))
|
bottom: if y == 0 { 1pt } else { 1.5pt } ))
|
||||||
|
|
||||||
// make table header bold
|
// make table header bold
|
||||||
|
|
|
@ -69,6 +69,12 @@ $
|
||||||
table.header[Date][Exercise Type][Calories Burned],
|
table.header[Date][Exercise Type][Calories Burned],
|
||||||
[2023-03-15], [Swimming], [400],
|
[2023-03-15], [Swimming], [400],
|
||||||
[2023-03-17], [Weightlifting], [250],
|
[2023-03-17], [Weightlifting], [250],
|
||||||
|
[2023-03-18], [Yoga], [200],
|
||||||
|
[2023-03-15], [Swimming], [400],
|
||||||
|
[2023-03-17], [Weightlifting], [250],
|
||||||
|
[2023-03-18], [Yoga], [200],
|
||||||
|
[2023-03-15], [Swimming], [400],
|
||||||
|
[2023-03-17], [Weightlifting], [250],
|
||||||
[2023-03-18], [Yoga], [200]),
|
[2023-03-18], [Yoga], [200]),
|
||||||
caption: [ Some table ])
|
caption: [ Some table ])
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue