Compare commits

..

No commits in common. "e60bf7d7941a612c889e416b1160b3733a5179c4" and "6d84cf4a1936f75dfbf9b378eaaf5d96daddd72f" have entirely different histories.

2 changed files with 15 additions and 27 deletions

View File

@ -2,12 +2,11 @@ name: Build'n check
run-name: Performing Typst compilation
on:
pull_request:
types:
- opened
- synchronize
branches:
- main
push:
branches-ignore:
- main
jobs:
run-ci-linux:
runs-on: ubuntu-latest
@ -15,8 +14,7 @@ jobs:
# push with commit containing "Run-Checks"
if: >
(contains(github.event.head_commit.message, 'Run-Checks') &&
github.event_name == 'push') ||
github.event_name == 'pull_request'
github.event_name == 'push')
steps:
- name: Check out repository code
uses: actions/checkout@v3

View File

@ -122,27 +122,17 @@
#metadata("content terminate") <end-of-content>
#end_styled(
config,
context [
// add bibliography if set
#if "bibliography" in config.thesis and config.thesis.bibliography != none {
pagebreak(weak: true)
counter(page).update(1)
set bibliography(
style: "ieee",
title: if (text.lang == "de") {
"Literaturverzeichnis"
} else if text.lang == "en" {
"Bibliography"
},
)
config.thesis.bibliography
}
#end_styled(config)[
// add bibliography if set
#if "bibliography" in config.thesis and config.thesis.bibliography != none {
pagebreak(weak: true)
counter(page).update(1)
set bibliography(style: "ieee")
config.thesis.bibliography
}
// appendix
#show-appendix(config: config)
],
)
// appendix
#show-appendix(config: config)
]
]
]