Compare commits
No commits in common. "main" and "v0.6.6" have entirely different histories.
|
@ -47,7 +47,7 @@ jobs:
|
||||||
go-version: '>=1.20.1'
|
go-version: '>=1.20.1'
|
||||||
- name: Download Artifcat
|
- name: Download Artifcat
|
||||||
id: download
|
id: download
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: example-document
|
name: example-document
|
||||||
path: ${{ github.workspace }}/Example.pdf
|
path: ${{ github.workspace }}/Example.pdf
|
||||||
|
|
|
@ -26,7 +26,6 @@
|
||||||
),
|
),
|
||||||
supervisor-signature: false,
|
supervisor-signature: false,
|
||||||
authors: ((), ()),
|
authors: ((), ()),
|
||||||
coauthors: (),
|
|
||||||
// information about thesis
|
// information about thesis
|
||||||
thesis: (
|
thesis: (
|
||||||
title: "Unofficial ABB/DHBW Typst template",
|
title: "Unofficial ABB/DHBW Typst template",
|
||||||
|
@ -42,8 +41,6 @@
|
||||||
bibliography: none, /* bibliography("refs.bib") */
|
bibliography: none, /* bibliography("refs.bib") */
|
||||||
glossary: none,
|
glossary: none,
|
||||||
appendices: none,
|
appendices: none,
|
||||||
confidentiality: true,
|
|
||||||
authorship: true,
|
|
||||||
),
|
),
|
||||||
style: (
|
style: (
|
||||||
header: (
|
header: (
|
||||||
|
|
|
@ -8,10 +8,6 @@
|
||||||
|
|
||||||
#let new_confidentiality_statement_page(config) = (
|
#let new_confidentiality_statement_page(config) = (
|
||||||
context {
|
context {
|
||||||
if not config.thesis.confidentiality {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
pagebreak(weak: true)
|
pagebreak(weak: true)
|
||||||
|
|
||||||
let thesis = config.thesis
|
let thesis = config.thesis
|
||||||
|
|
|
@ -8,10 +8,6 @@
|
||||||
|
|
||||||
#let new_declaration_of_authorship(config) = (
|
#let new_declaration_of_authorship(config) = (
|
||||||
context {
|
context {
|
||||||
if not config.thesis.authorship {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
pagebreak(weak: true)
|
pagebreak(weak: true)
|
||||||
|
|
||||||
let thesis = config.thesis
|
let thesis = config.thesis
|
||||||
|
|
|
@ -125,14 +125,9 @@
|
||||||
#let new_outline() = {
|
#let new_outline() = {
|
||||||
pagebreak(weak: true)
|
pagebreak(weak: true)
|
||||||
|
|
||||||
show outline.entry: it => {
|
show outline.entry.where(level: 1): it => {
|
||||||
if it.level == 1 {
|
|
||||||
v(1.5em, weak: true)
|
v(1.5em, weak: true)
|
||||||
strong(it)
|
strong(it)
|
||||||
} else {
|
|
||||||
v(1.0em, weak: true)
|
|
||||||
it
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
render_heading_outline()
|
render_heading_outline()
|
||||||
|
|
|
@ -112,7 +112,7 @@
|
||||||
|
|
||||||
#v(1.5em)
|
#v(1.5em)
|
||||||
|
|
||||||
#let rows = int(config.authors.len() / 3 + 0.9)
|
#let rows = int(config.authors.len() / 3 + 0.5)
|
||||||
|
|
||||||
#for i in range(0, rows) {
|
#for i in range(0, rows) {
|
||||||
let cols = calc.min(config.authors.len() - i * 3, 3)
|
let cols = calc.min(config.authors.len() - i * 3, 3)
|
||||||
|
@ -138,16 +138,6 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
#v(1em)
|
|
||||||
|
|
||||||
#align(center)[
|
|
||||||
coauthored in part by
|
|
||||||
#linebreak()
|
|
||||||
#for author in config.coauthors {
|
|
||||||
author
|
|
||||||
}
|
|
||||||
]
|
|
||||||
|
|
||||||
#set align(bottom)
|
#set align(bottom)
|
||||||
|
|
||||||
#pad(top: 1.5em)[
|
#pad(top: 1.5em)[
|
||||||
|
|
|
@ -24,9 +24,6 @@
|
||||||
contact: "sven.vogel123@web.de"
|
contact: "sven.vogel123@web.de"
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
coauthors: (
|
|
||||||
"Gorbatschew"
|
|
||||||
),
|
|
||||||
thesis: (
|
thesis: (
|
||||||
title: "Unofficial ABB/DHBW Typst template",
|
title: "Unofficial ABB/DHBW Typst template",
|
||||||
subtitle: "for reports and thesises",
|
subtitle: "for reports and thesises",
|
||||||
|
@ -40,8 +37,6 @@
|
||||||
bibliography: bibliography("refs.bib"),
|
bibliography: bibliography("refs.bib"),
|
||||||
glossary: yaml("glossary.yml"),
|
glossary: yaml("glossary.yml"),
|
||||||
appendices: include "appendix.typ",
|
appendices: include "appendix.typ",
|
||||||
confidentiality: false,
|
|
||||||
authorship: false
|
|
||||||
),
|
),
|
||||||
style: (
|
style: (
|
||||||
header: (
|
header: (
|
||||||
|
|
Loading…
Reference in New Issue