Compare commits
No commits in common. "bbd88494d7ef68249b176d39d71895211919b141" and "a7f4937f9ec827754fe46b3933d604fbfdc6ffa1" have entirely different histories.
bbd88494d7
...
a7f4937f9e
|
@ -19,10 +19,6 @@
|
|||
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.
|
||||
|
||||
## 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
|
||||
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.
|
||||
|
|
|
@ -18,10 +18,8 @@
|
|||
if "appendices" in config.thesis {
|
||||
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)
|
||||
v(-2em)
|
||||
|
||||
// APA style appendix
|
||||
show heading: it => {
|
||||
|
|
|
@ -67,7 +67,7 @@
|
|||
stroke: (x, y) => (
|
||||
left: none,
|
||||
right: none,
|
||||
top: if y == 0 { 1.5pt } else if y < 2 { 1pt } else { 0.5pt },
|
||||
top: if y == 0 { 1.5pt } else if y < 2 { 1pt } else { 0pt },
|
||||
bottom: if y == 0 { 1pt } else { 1.5pt } ))
|
||||
|
||||
// make table header bold
|
||||
|
|
|
@ -69,12 +69,6 @@ $
|
|||
table.header[Date][Exercise Type][Calories Burned],
|
||||
[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-15], [Swimming], [400],
|
||||
[2023-03-17], [Weightlifting], [250],
|
||||
[2023-03-18], [Yoga], [200]),
|
||||
caption: [ Some table ])
|
||||
|
||||
|
|
Loading…
Reference in New Issue