Compare commits
No commits in common. "main" and "v0.4.1" have entirely different histories.
|
@ -5,16 +5,15 @@ on: [push]
|
||||||
jobs:
|
jobs:
|
||||||
run-ci-linux:
|
run-ci-linux:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
TYPST_INSTALL: /usr/local
|
||||||
|
TYPST_VERSION: 0.11.1
|
||||||
steps:
|
steps:
|
||||||
- name: Check out repository code
|
- name: Check out repository code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
- name: Install dependencies for Nix setup action
|
- name: Install Typst CLI
|
||||||
run: |
|
run: curl -fsSL https://typst.community/typst-install/install.sh | sh -s "$TYPST_VERSION"
|
||||||
apt update -y
|
- name: Set up Python 3
|
||||||
apt install sudo -y
|
run: apt update -y && apt install python3-pip -y
|
||||||
- name: Setup Nix
|
|
||||||
uses: cachix/install-nix-action@v27
|
|
||||||
with:
|
|
||||||
nix_path: nixpkgs=channel:nixos-unstable
|
|
||||||
- name: Run CI
|
- name: Run CI
|
||||||
run: nix-shell --run ./run-ci.sh
|
run: bash -c ./run-ci.sh
|
||||||
|
|
|
@ -1,31 +1,28 @@
|
||||||
name: release
|
name: release
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
tags:
|
tags:
|
||||||
- 'v*.*.*'
|
- '*'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
release:
|
release:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Check out repository code
|
- uses: actions/checkout@v3
|
||||||
uses: actions/checkout@v3
|
|
||||||
- name: Install dependencies for Nix setup action
|
|
||||||
run: |
|
|
||||||
apt update -y
|
|
||||||
apt install sudo -y
|
|
||||||
- name: Setup Nix
|
|
||||||
uses: cachix/install-nix-action@v27
|
|
||||||
with:
|
with:
|
||||||
nix_path: nixpkgs=channel:nixos-unstable
|
fetch-depth: 0
|
||||||
|
- name: Install Typst CLI
|
||||||
|
run: curl -fsSL https://typst.community/typst-install/install.sh | sh -s "$TYPST_VERSION"
|
||||||
|
- name: Set up Python 3
|
||||||
|
run: apt update -y && apt install python3-pip -y
|
||||||
- name: Run CI
|
- name: Run CI
|
||||||
run: nix-shell --run ./run-ci.sh
|
run: bash -c ./run-ci.sh
|
||||||
- name: Setup go
|
- name: Setup go
|
||||||
uses: https://github.com/actions/setup-go@v4
|
uses: https://github.com/actions/setup-go@v4
|
||||||
with:
|
with:
|
||||||
go-version: '>=1.20.1'
|
go-version: '>=1.20.1'
|
||||||
- name: Create release
|
- name: Create release
|
||||||
id: create-release
|
id: create-release
|
||||||
uses: https://gitea.com/actions/release-action@main
|
uses: https://gitea.com/actions/release-action@main
|
||||||
with:
|
with:
|
||||||
|
|
|
@ -5,12 +5,16 @@ on: [push]
|
||||||
jobs:
|
jobs:
|
||||||
run-ci-linux:
|
run-ci-linux:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
TYPST_INSTALL: $HOME/.typst
|
||||||
|
TYPST_VERSION: 0.11.1
|
||||||
steps:
|
steps:
|
||||||
- name: Check out repository code
|
- name: Check out repository code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
- name: Setup Nix
|
- name: Install Typst CLI
|
||||||
uses: cachix/install-nix-action@v27
|
run: curl -fsSL https://typst.community/typst-install/install.sh | sh -s "$TYPST_VERSION"
|
||||||
|
- uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
nix_path: nixpkgs=channel:nixos-unstable
|
python-version: '3.11'
|
||||||
- name: Run CI
|
- name: Run CI
|
||||||
run: nix-shell --run ./run-ci.sh
|
run: export PATH="$TYPST_INSTALL/bin:$PATH" && bash -c ./run-ci.sh
|
||||||
|
|
|
@ -1,30 +1,32 @@
|
||||||
name: release
|
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
# Sequence of patterns matched against refs/tags
|
||||||
tags:
|
tags:
|
||||||
- 'v*.*.*'
|
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
|
||||||
|
|
||||||
|
name: Create Release
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
release:
|
build:
|
||||||
|
name: Create Release
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Check out repository code
|
- name: Check out repository code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
- name: Setup Nix
|
- name: Install Typst CLI
|
||||||
uses: cachix/install-nix-action@v27
|
run: curl -fsSL https://typst.community/typst-install/install.sh | sh -s "$TYPST_VERSION"
|
||||||
|
- uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
nix_path: nixpkgs=channel:nixos-unstable
|
python-version: '3.11'
|
||||||
- name: Run CI
|
- name: Run CI
|
||||||
run: nix-shell --run ./run-ci.sh
|
run: export PATH="$TYPST_INSTALL/bin:$PATH" && bash -c ./run-ci.sh
|
||||||
- name: Setup go
|
- name: Create Release
|
||||||
uses: https://github.com/actions/setup-go@v4
|
id: create_release
|
||||||
|
uses: actions/create-release@latest
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.PAT }}
|
||||||
with:
|
with:
|
||||||
go-version: '>=1.20.1'
|
tag_name: ${{ github.ref }}
|
||||||
- name: Create release
|
release_name: Release ${{ github.ref }}
|
||||||
id: create-release
|
draft: false
|
||||||
uses: https://gitea.com/actions/release-action@main
|
prerelease: false
|
||||||
with:
|
|
||||||
files: |-
|
|
||||||
example.pdf
|
|
||||||
api_key: '${{secrets.RELEASE_TOKEN}}'
|
|
17
README.md
17
README.md
|
@ -40,7 +40,7 @@
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
> ⚠️ **Notice** <br>
|
> ⚠️ **Notice** <br>
|
||||||
> Typst ist under active development and thus may lack features an experienced LaTeX is used to.
|
> Typst ist under active development and thus may lack features an experienced LaTeX is used to.
|
||||||
|
|
||||||
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.
|
||||||
|
@ -57,7 +57,7 @@ A short overview of all features the template is capable of:
|
||||||
- Watermark for draft versions
|
- Watermark for draft versions
|
||||||
- Automatic form filling for data provided via configuration
|
- Automatic form filling for data provided via configuration
|
||||||
- Styles for captions, tables and equations
|
- Styles for captions, tables and equations
|
||||||
- ABB branding inspired code theme
|
- ABB branding inspired code theme
|
||||||
|
|
||||||
## Preview
|
## Preview
|
||||||
|
|
||||||
|
@ -131,10 +131,9 @@ Complies with ABB branding guidelines such as:
|
||||||
|
|
||||||
## Fonts
|
## Fonts
|
||||||
|
|
||||||
Both fonts used in the document are licensed under the [Open Font License](https://openfontlicense.org/) and can be used for non-commercial as well as commercial purposes:
|
Both fonts used in the document are licensed under the [Open Font License](https://openfontlicense.org/) and can be used for non-commercial as well as commercial purposes. They can be downloaded from google fonts:
|
||||||
- [Fira Sans](https://github.com/bBoxType/FiraSans)
|
- [Montserrat](https://fonts.google.com/specimen/Montserrat)
|
||||||
- [Fira Math](https://github.com/firamath/firamath)
|
- [Open Sans](https://fonts.google.com/specimen/Open+Sans)
|
||||||
- [Fira Code NF](https://www.nerdfonts.com/font-downloads)
|
|
||||||
|
|
||||||
Consider giving the creators of the font credit for their amazing work!
|
Consider giving the creators of the font credit for their amazing work!
|
||||||
|
|
||||||
|
@ -145,8 +144,8 @@ The developers around Typst have made pretty handy comparison guide between LaTe
|
||||||
## Legal
|
## Legal
|
||||||
|
|
||||||
This template and its content is in no way officially affiliaterd with either DHBW or ABB AG.
|
This template and its content is in no way officially affiliaterd with either DHBW or ABB AG.
|
||||||
Its only purpose is to simplify the process of getting started with the typsetting language Typst for writing a university report or thesis.
|
Its only purpose is to simplify the process of getting started with the typsetting language Typst for writing a university report or thesis.
|
||||||
As author and owner of the reposity I claim no copyright of the logos used in the document, the software used to compile the source or the documents based on this template.
|
As author and owner of the reposity I claim no copyright of the logos used in the document, the software used to compile the source or the documents based on this template.
|
||||||
|
|
||||||
## FAQ
|
## FAQ
|
||||||
|
|
||||||
|
@ -167,4 +166,4 @@ Typst in comparison is serval orders of magnitudes faster and has native support
|
||||||
|
|
||||||
The logos for both ABB AG and DHBW are freely available at Wikimedia Commons:
|
The logos for both ABB AG and DHBW are freely available at Wikimedia Commons:
|
||||||
- [ABB logo as svg](https://commons.wikimedia.org/wiki/File:ABB_logo.svg)
|
- [ABB logo as svg](https://commons.wikimedia.org/wiki/File:ABB_logo.svg)
|
||||||
- [DHBW logo as svg](https://upload.wikimedia.org/wikipedia/de/1/1d/DHBW-Logo.svg)
|
- [DHBW logo as svg](https://upload.wikimedia.org/wikipedia/de/1/1d/DHBW-Logo.svg)
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,93 +0,0 @@
|
||||||
Copyright (c) 2014, The Fira Code Project Authors (https://github.com/tonsky/FiraCode)
|
|
||||||
|
|
||||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
|
||||||
This license is copied below, and is also available with a FAQ at:
|
|
||||||
http://scripts.sil.org/OFL
|
|
||||||
|
|
||||||
|
|
||||||
-----------------------------------------------------------
|
|
||||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
|
||||||
-----------------------------------------------------------
|
|
||||||
|
|
||||||
PREAMBLE
|
|
||||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
|
||||||
development of collaborative font projects, to support the font creation
|
|
||||||
efforts of academic and linguistic communities, and to provide a free and
|
|
||||||
open framework in which fonts may be shared and improved in partnership
|
|
||||||
with others.
|
|
||||||
|
|
||||||
The OFL allows the licensed fonts to be used, studied, modified and
|
|
||||||
redistributed freely as long as they are not sold by themselves. The
|
|
||||||
fonts, including any derivative works, can be bundled, embedded,
|
|
||||||
redistributed and/or sold with any software provided that any reserved
|
|
||||||
names are not used by derivative works. The fonts and derivatives,
|
|
||||||
however, cannot be released under any other type of license. The
|
|
||||||
requirement for fonts to remain under this license does not apply
|
|
||||||
to any document created using the fonts or their derivatives.
|
|
||||||
|
|
||||||
DEFINITIONS
|
|
||||||
"Font Software" refers to the set of files released by the Copyright
|
|
||||||
Holder(s) under this license and clearly marked as such. This may
|
|
||||||
include source files, build scripts and documentation.
|
|
||||||
|
|
||||||
"Reserved Font Name" refers to any names specified as such after the
|
|
||||||
copyright statement(s).
|
|
||||||
|
|
||||||
"Original Version" refers to the collection of Font Software components as
|
|
||||||
distributed by the Copyright Holder(s).
|
|
||||||
|
|
||||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
|
||||||
or substituting -- in part or in whole -- any of the components of the
|
|
||||||
Original Version, by changing formats or by porting the Font Software to a
|
|
||||||
new environment.
|
|
||||||
|
|
||||||
"Author" refers to any designer, engineer, programmer, technical
|
|
||||||
writer or other person who contributed to the Font Software.
|
|
||||||
|
|
||||||
PERMISSION & CONDITIONS
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining
|
|
||||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
|
||||||
redistribute, and sell modified and unmodified copies of the Font
|
|
||||||
Software, subject to the following conditions:
|
|
||||||
|
|
||||||
1) Neither the Font Software nor any of its individual components,
|
|
||||||
in Original or Modified Versions, may be sold by itself.
|
|
||||||
|
|
||||||
2) Original or Modified Versions of the Font Software may be bundled,
|
|
||||||
redistributed and/or sold with any software, provided that each copy
|
|
||||||
contains the above copyright notice and this license. These can be
|
|
||||||
included either as stand-alone text files, human-readable headers or
|
|
||||||
in the appropriate machine-readable metadata fields within text or
|
|
||||||
binary files as long as those fields can be easily viewed by the user.
|
|
||||||
|
|
||||||
3) No Modified Version of the Font Software may use the Reserved Font
|
|
||||||
Name(s) unless explicit written permission is granted by the corresponding
|
|
||||||
Copyright Holder. This restriction only applies to the primary font name as
|
|
||||||
presented to the users.
|
|
||||||
|
|
||||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
|
||||||
Software shall not be used to promote, endorse or advertise any
|
|
||||||
Modified Version, except to acknowledge the contribution(s) of the
|
|
||||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
|
||||||
permission.
|
|
||||||
|
|
||||||
5) The Font Software, modified or unmodified, in part or in whole,
|
|
||||||
must be distributed entirely under this license, and must not be
|
|
||||||
distributed under any other license. The requirement for fonts to
|
|
||||||
remain under this license does not apply to any document created
|
|
||||||
using the Font Software.
|
|
||||||
|
|
||||||
TERMINATION
|
|
||||||
This license becomes null and void if any of the above conditions are
|
|
||||||
not met.
|
|
||||||
|
|
||||||
DISCLAIMER
|
|
||||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
||||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
|
||||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
|
||||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
|
||||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
||||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
|
||||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
|
||||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
|
|
@ -1,48 +0,0 @@
|
||||||
# Nerd Fonts
|
|
||||||
|
|
||||||
This is an archived font from the Nerd Fonts release v3.2.1.
|
|
||||||
|
|
||||||
For more information see:
|
|
||||||
* https://github.com/ryanoasis/nerd-fonts/
|
|
||||||
* https://github.com/ryanoasis/nerd-fonts/releases/latest/
|
|
||||||
|
|
||||||
# Fira Code
|
|
||||||
|
|
||||||
**Fira Code** is a free monospaced font with programming ligatures.
|
|
||||||
|
|
||||||
For more information have a look at the upstream website: https://github.com/tonsky/FiraCode
|
|
||||||
|
|
||||||
Version: 6.2
|
|
||||||
|
|
||||||
## Which font?
|
|
||||||
|
|
||||||
### TL;DR
|
|
||||||
|
|
||||||
* Pick your font family:
|
|
||||||
* If you are limited to monospaced fonts (because of your terminal, etc) then pick a font with `Nerd Font Mono` (or `NFM`).
|
|
||||||
* If you want to have bigger icons (usually around 1.5 normal letters wide) pick a font without `Mono` i.e. `Nerd Font` (or `NF`). Most terminals support this, but ymmv.
|
|
||||||
* If you work in a proportional context (GUI elements or edit a presentation etc) pick a font with `Nerd Font Propo` (or `NFP`).
|
|
||||||
|
|
||||||
### Ligatures
|
|
||||||
|
|
||||||
Ligatures are generally preserved in the patched fonts.
|
|
||||||
Nerd Fonts `v2.0.0` had no ligatures in the `Nerd Font Mono` fonts, this has been dropped with `v2.1.0`.
|
|
||||||
If you have a ligature-aware terminal and don't want ligatures you can (usually) disable them in the terminal settings.
|
|
||||||
|
|
||||||
### Explanation
|
|
||||||
|
|
||||||
Once you narrow down your font choice of family (`Droid Sans`, `Inconsolata`, etc) and style (`bold`, `italic`, etc) you have 2 main choices:
|
|
||||||
|
|
||||||
#### `Option 1: Download already patched font`
|
|
||||||
|
|
||||||
* For a stable version download a font package from the [release page](https://github.com/ryanoasis/nerd-fonts/releases)
|
|
||||||
* Or download the development version from the folders here
|
|
||||||
|
|
||||||
#### `Option 2: Patch your own font`
|
|
||||||
|
|
||||||
* Patch your own variations with the various options provided by the font patcher (i.e. not include all symbols for smaller font size)
|
|
||||||
|
|
||||||
For more information see: [The FAQ](https://github.com/ryanoasis/nerd-fonts/wiki/FAQ-and-Troubleshooting#which-font)
|
|
||||||
|
|
||||||
[SIL-RFN]:http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web_fonts_and_RFNs#14cbfd4a
|
|
||||||
|
|
Binary file not shown.
|
@ -1,92 +0,0 @@
|
||||||
Copyright (C) 2018--2023 by Xiangdong Zeng <xdzeng96@gmail.com>
|
|
||||||
|
|
||||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
|
||||||
This license is copied below, and is also available with a FAQ at:
|
|
||||||
http://scripts.sil.org/OFL
|
|
||||||
|
|
||||||
-----------------------------------------------------------
|
|
||||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
|
||||||
-----------------------------------------------------------
|
|
||||||
|
|
||||||
PREAMBLE
|
|
||||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
|
||||||
development of collaborative font projects, to support the font creation
|
|
||||||
efforts of academic and linguistic communities, and to provide a free and
|
|
||||||
open framework in which fonts may be shared and improved in partnership
|
|
||||||
with others.
|
|
||||||
|
|
||||||
The OFL allows the licensed fonts to be used, studied, modified and
|
|
||||||
redistributed freely as long as they are not sold by themselves. The
|
|
||||||
fonts, including any derivative works, can be bundled, embedded,
|
|
||||||
redistributed and/or sold with any software provided that any reserved
|
|
||||||
names are not used by derivative works. The fonts and derivatives,
|
|
||||||
however, cannot be released under any other type of license. The
|
|
||||||
requirement for fonts to remain under this license does not apply
|
|
||||||
to any document created using the fonts or their derivatives.
|
|
||||||
|
|
||||||
DEFINITIONS
|
|
||||||
"Font Software" refers to the set of files released by the Copyright
|
|
||||||
Holder(s) under this license and clearly marked as such. This may
|
|
||||||
include source files, build scripts and documentation.
|
|
||||||
|
|
||||||
"Reserved Font Name" refers to any names specified as such after the
|
|
||||||
copyright statement(s).
|
|
||||||
|
|
||||||
"Original Version" refers to the collection of Font Software components as
|
|
||||||
distributed by the Copyright Holder(s).
|
|
||||||
|
|
||||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
|
||||||
or substituting -- in part or in whole -- any of the components of the
|
|
||||||
Original Version, by changing formats or by porting the Font Software to a
|
|
||||||
new environment.
|
|
||||||
|
|
||||||
"Author" refers to any designer, engineer, programmer, technical
|
|
||||||
writer or other person who contributed to the Font Software.
|
|
||||||
|
|
||||||
PERMISSION AND CONDITIONS
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining
|
|
||||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
|
||||||
redistribute, and sell modified and unmodified copies of the Font
|
|
||||||
Software, subject to the following conditions:
|
|
||||||
|
|
||||||
1) Neither the Font Software nor any of its individual components,
|
|
||||||
in Original or Modified Versions, may be sold by itself.
|
|
||||||
|
|
||||||
2) Original or Modified Versions of the Font Software may be bundled,
|
|
||||||
redistributed and/or sold with any software, provided that each copy
|
|
||||||
contains the above copyright notice and this license. These can be
|
|
||||||
included either as stand-alone text files, human-readable headers or
|
|
||||||
in the appropriate machine-readable metadata fields within text or
|
|
||||||
binary files as long as those fields can be easily viewed by the user.
|
|
||||||
|
|
||||||
3) No Modified Version of the Font Software may use the Reserved Font
|
|
||||||
Name(s) unless explicit written permission is granted by the corresponding
|
|
||||||
Copyright Holder. This restriction only applies to the primary font name as
|
|
||||||
presented to the users.
|
|
||||||
|
|
||||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
|
||||||
Software shall not be used to promote, endorse or advertise any
|
|
||||||
Modified Version, except to acknowledge the contribution(s) of the
|
|
||||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
|
||||||
permission.
|
|
||||||
|
|
||||||
5) The Font Software, modified or unmodified, in part or in whole,
|
|
||||||
must be distributed entirely under this license, and must not be
|
|
||||||
distributed under any other license. The requirement for fonts to
|
|
||||||
remain under this license does not apply to any document created
|
|
||||||
using the Font Software.
|
|
||||||
|
|
||||||
TERMINATION
|
|
||||||
This license becomes null and void if any of the above conditions are
|
|
||||||
not met.
|
|
||||||
|
|
||||||
DISCLAIMER
|
|
||||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
||||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
|
||||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
|
||||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
|
||||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
||||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
|
||||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
|
||||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
26
run-ci.sh
26
run-ci.sh
|
@ -25,29 +25,19 @@ function enter-section() {
|
||||||
printf "\\n"
|
printf "\\n"
|
||||||
|
|
||||||
eval "$2"
|
eval "$2"
|
||||||
exit_status=$?
|
if [ $? -neq $3 ]; then
|
||||||
|
abort "command: $2 failed in section: $1"
|
||||||
if [ "$3" == "should fail" ]; then
|
|
||||||
log "INFO" "expected to fail..."
|
|
||||||
if [ $exit_status -eq 0 ]; then
|
|
||||||
abort "command: $2 failed in section: $1 with: $exit_status"
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
log "INFO" "expected to pass..."
|
|
||||||
if [ ! $exit_status -eq 0 ]; then
|
|
||||||
abort "command: $2 failed in section: $1 with: $exit_status"
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
printf "\\n"
|
printf "\\n"
|
||||||
log "INFO" "section $1 completed successfully"
|
log "INFO" "section $1 completed successfully"
|
||||||
}
|
}
|
||||||
|
|
||||||
enter-section "Typstyle checking" "./run-fmt.sh --check src/lib.typ" 0
|
enter-section "BUILD: ABB code theme" "./generate-theme.sh" 0
|
||||||
enter-section "Compiling template..." "typst compile template/main.typ --root . --font-path fonts example.pdf"
|
enter-section "Compiling template..." "typst compile template/main.typ --root . example.pdf" 0
|
||||||
enter-section "TEST: local template import" "typst compile tests/local-import/main.typ --root . --font-path fonts"
|
enter-section "TEST: local template import" "typst compile tests/local-import/main.typ --root ." 0
|
||||||
enter-section "TEST: invalid config case 1" "typst compile tests/invalid-config/test-case-1.typ --root . --font-path fonts" "should fail"
|
enter-section "TEST: invalid config case 1" "typst compile tests/invalid-config/test-case-1.typ --root ." 1
|
||||||
enter-section "TEST: invalid config case 2" "typst compile tests/invalid-config/test-case-2.typ --root . --font-path fonts"
|
enter-section "TEST: invalid config case 2" "compile tests/invalid-config/test-case-2.typ" 0
|
||||||
enter-section "TEST: invalid config case 3" "typst compile tests/invalid-config/test-case-3.typ --root . --font-path fonts" "should fail"
|
enter-section "TEST: invalid config case 3" "typst compile tests/invalid-config/test-case-3.typ --root ." 1
|
||||||
|
|
||||||
log "INFO" "CI completed successfully"
|
log "INFO" "CI completed successfully"
|
||||||
|
|
42
run-fmt.sh
42
run-fmt.sh
|
@ -1,42 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
function format() {
|
|
||||||
# format file
|
|
||||||
# typstyle --format $1
|
|
||||||
|
|
||||||
if [ -z "$1" ]; then
|
|
||||||
return
|
|
||||||
fi
|
|
||||||
|
|
||||||
local wd=$(dirname $(realpath "$1"))
|
|
||||||
|
|
||||||
echo "processing file $1..."
|
|
||||||
typstyle "$2" "$1" > /dev/null
|
|
||||||
if [ $? -eq 1 ]; then
|
|
||||||
echo "failed format validation: $1"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
local imports=$(rg "#import \"([a-z0-9/\-]+\.typ)\"" -Nor '$1' "$1")
|
|
||||||
|
|
||||||
# format all included files
|
|
||||||
while IFS= read -r line; do
|
|
||||||
if [ -z "$line" ]; then
|
|
||||||
continue
|
|
||||||
fi
|
|
||||||
format "$wd/$line" "$2"
|
|
||||||
done <<< "$imports"
|
|
||||||
}
|
|
||||||
|
|
||||||
case $1 in
|
|
||||||
"--format")
|
|
||||||
format "$2" "--inplace"
|
|
||||||
;;
|
|
||||||
"--check")
|
|
||||||
format "$2" "--check"
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
echo "unknown option: $1"
|
|
||||||
exit 1
|
|
||||||
;;
|
|
||||||
esac
|
|
13
shell.nix
13
shell.nix
|
@ -1,13 +0,0 @@
|
||||||
let
|
|
||||||
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-unstable";
|
|
||||||
pkgs = import nixpkgs { config = {}; overlays = []; };
|
|
||||||
in
|
|
||||||
|
|
||||||
pkgs.mkShellNoCC {
|
|
||||||
packages = with pkgs; [
|
|
||||||
python312
|
|
||||||
python312Packages.pyyaml
|
|
||||||
typst
|
|
||||||
typstyle
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -59,9 +59,9 @@
|
||||||
bottom: 2.5cm)),
|
bottom: 2.5cm)),
|
||||||
text: (
|
text: (
|
||||||
size: 12pt,
|
size: 12pt,
|
||||||
font: "Fira Sans"),
|
font: "Open Sans"),
|
||||||
heading: (
|
heading: (
|
||||||
font: "Fira Sans"),
|
font: "Montserrat"),
|
||||||
code: (
|
code: (
|
||||||
theme: "res/abb.tmTheme",
|
theme: "res/abb.tmTheme",
|
||||||
font: "FiraCode Nerd Font",
|
font: "FiraCode Nerd Font",
|
||||||
|
|
|
@ -30,10 +30,7 @@ SOFTWARE.*/
|
||||||
#let __query_labels_with_key(loc, key, before: false) = {
|
#let __query_labels_with_key(loc, key, before: false) = {
|
||||||
if before {
|
if before {
|
||||||
query(
|
query(
|
||||||
selector(label(__glossary_label_prefix + key)).before(
|
selector(label(__glossary_label_prefix + key)).before(loc, inclusive: false),
|
||||||
loc,
|
|
||||||
inclusive: false,
|
|
||||||
),
|
|
||||||
loc,
|
loc,
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
|
@ -59,18 +56,13 @@ SOFTWARE.*/
|
||||||
let entlong = entry.at("long", default: "")
|
let entlong = entry.at("long", default: "")
|
||||||
let textLink = if display != none {
|
let textLink = if display != none {
|
||||||
[#display]
|
[#display]
|
||||||
} else if (
|
} else if (is_first or long == true) and entlong != [] and entlong != "" and long != false {
|
||||||
is_first or long == true
|
|
||||||
) and entlong != [] and entlong != "" and long != false {
|
|
||||||
[#entlong (#entry.short#suffix)]
|
[#entlong (#entry.short#suffix)]
|
||||||
} else {
|
} else {
|
||||||
[#entry.short#suffix]
|
[#entry.short#suffix]
|
||||||
}
|
}
|
||||||
|
|
||||||
[#link(
|
[#link(label(entry.key), textLink)#label(__glossary_label_prefix + entry.key)]
|
||||||
label(entry.key),
|
|
||||||
textLink,
|
|
||||||
)#label(__glossary_label_prefix + entry.key)]
|
|
||||||
} else {
|
} else {
|
||||||
panic(__not-found-panic-error-msg(key))
|
panic(__not-found-panic-error-msg(key))
|
||||||
}
|
}
|
||||||
|
@ -108,18 +100,13 @@ SOFTWARE.*/
|
||||||
[#entplural]
|
[#entplural]
|
||||||
}
|
}
|
||||||
|
|
||||||
let textLink = if (
|
let textLink = if (is_first or long == true) and entlong != [] and entlong != "" and long != false {
|
||||||
is_first or long == true
|
|
||||||
) and entlong != [] and entlong != "" and long != false {
|
|
||||||
[#entlong (#short)]
|
[#entlong (#short)]
|
||||||
} else {
|
} else {
|
||||||
[#short]
|
[#short]
|
||||||
}
|
}
|
||||||
|
|
||||||
[#link(
|
[#link(label(entry.key), textLink)#label(__glossary_label_prefix + entry.key)]
|
||||||
label(entry.key),
|
|
||||||
textLink,
|
|
||||||
)#label(__glossary_label_prefix + entry.key)]
|
|
||||||
} else {
|
} else {
|
||||||
panic(__not-found-panic-error-msg(key))
|
panic(__not-found-panic-error-msg(key))
|
||||||
}
|
}
|
||||||
|
@ -129,9 +116,7 @@ SOFTWARE.*/
|
||||||
// show rule to make the references for glossarium
|
// show rule to make the references for glossarium
|
||||||
#let make-glossary(body) = {
|
#let make-glossary(body) = {
|
||||||
show ref: r => {
|
show ref: r => {
|
||||||
if r.element != none and r.element.func() == figure and r
|
if r.element != none and r.element.func() == figure and r.element.kind == __glossarium_figure {
|
||||||
.element
|
|
||||||
.kind == __glossarium_figure {
|
|
||||||
// call to the general citing function
|
// call to the general citing function
|
||||||
gls(str(r.target), suffix: r.citation.supplement)
|
gls(str(r.target), suffix: r.citation.supplement)
|
||||||
} else {
|
} else {
|
||||||
|
@ -185,13 +170,7 @@ SOFTWARE.*/
|
||||||
numbering: none,
|
numbering: none,
|
||||||
caption: {
|
caption: {
|
||||||
context {
|
context {
|
||||||
let key = if entry.key.ends-with("__glossary_entry") {
|
let term_references = __query_labels_with_key(here(), entry.key)
|
||||||
entry.key.replace("__glossary_entry", "")
|
|
||||||
} else {
|
|
||||||
entry.key
|
|
||||||
}
|
|
||||||
|
|
||||||
let term_references = __query_labels_with_key(here(), key)
|
|
||||||
if term_references.len() != 0 or show-all [
|
if term_references.len() != 0 or show-all [
|
||||||
#let desc = entry.at("desc", default: "")
|
#let desc = entry.at("desc", default: "")
|
||||||
#let long = entry.at("long", default: "")
|
#let long = entry.at("long", default: "")
|
||||||
|
@ -199,7 +178,6 @@ SOFTWARE.*/
|
||||||
#let hasDesc = desc != "" and desc != []
|
#let hasDesc = desc != "" and desc != []
|
||||||
|
|
||||||
#block(
|
#block(
|
||||||
below: 1.5em,
|
|
||||||
par(hanging-indent: 1em)[
|
par(hanging-indent: 1em)[
|
||||||
#text(weight: "bold", entry.short)
|
#text(weight: "bold", entry.short)
|
||||||
#if hasLong and hasDesc [
|
#if hasLong and hasDesc [
|
||||||
|
@ -215,9 +193,7 @@ SOFTWARE.*/
|
||||||
.sorted(key: x => x.page())
|
.sorted(key: x => x.page())
|
||||||
.fold(
|
.fold(
|
||||||
(values: (), pages: ()),
|
(values: (), pages: ()),
|
||||||
((values, pages), x) => if pages.contains(
|
((values, pages), x) => if pages.contains(x.page()) {
|
||||||
x.page(),
|
|
||||||
) {
|
|
||||||
(values: values, pages: pages)
|
(values: values, pages: pages)
|
||||||
} else {
|
} else {
|
||||||
values.push(x)
|
values.push(x)
|
||||||
|
@ -231,10 +207,7 @@ SOFTWARE.*/
|
||||||
if page-numbering == none {
|
if page-numbering == none {
|
||||||
page-numbering = "1"
|
page-numbering = "1"
|
||||||
}
|
}
|
||||||
link(x)[#numbering(
|
link(x)[#numbering(page-numbering, ..counter(page).at(x))]
|
||||||
page-numbering,
|
|
||||||
..counter(page).at(x),
|
|
||||||
)]
|
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
.join(", ")
|
.join(", ")
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
// Edited: 08.07.2024
|
// Edited: 08.07.2024
|
||||||
// License: MIT
|
// License: MIT
|
||||||
|
|
||||||
#let glossary(entries, config) = {
|
#let glossary(entries) = {
|
||||||
|
|
||||||
assert(
|
assert(
|
||||||
type(entries) == dictionary,
|
type(entries) == dictionary,
|
||||||
|
@ -54,13 +54,13 @@
|
||||||
message: "The optional group of glossary entry `" + k + "` is not a string",
|
message: "The optional group of glossary entry `" + k + "` is not a string",
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
let acronym_group = if config.lang == "de" {
|
let acronym_group = if (context text.lang) == "de" {
|
||||||
"Abkürzungsverzeichnis"
|
"Akronyme"
|
||||||
} else {
|
} else {
|
||||||
"List of Acronyms"
|
"Acronyms"
|
||||||
}
|
}
|
||||||
|
|
||||||
let glossary_group = if config.lang == "de" {
|
let glossary_group = if (context text.lang) == "de" {
|
||||||
"Begriffe"
|
"Begriffe"
|
||||||
} else {
|
} else {
|
||||||
"Glossary"
|
"Glossary"
|
||||||
|
@ -75,14 +75,8 @@
|
||||||
// create dedicated entries for
|
// create dedicated entries for
|
||||||
// acronym and glossary
|
// acronym and glossary
|
||||||
if "long" in v and "desc" in v {
|
if "long" in v and "desc" in v {
|
||||||
processed_glossary.insert(
|
processed_glossary.insert(k, (short: v.short, long: v.long, group: acronym_group))
|
||||||
k,
|
processed_glossary.insert(k + "__glossary_entry", (short: v.short, desc: v.desc, long: v.long, group: glossary_group))
|
||||||
(short: v.short, long: v.long, group: acronym_group),
|
|
||||||
)
|
|
||||||
processed_glossary.insert(
|
|
||||||
k + "__glossary_entry",
|
|
||||||
(short: v.short, desc: v.desc, long: v.long, group: glossary_group),
|
|
||||||
)
|
|
||||||
} else {
|
} else {
|
||||||
processed_glossary.insert(k, v)
|
processed_glossary.insert(k, v)
|
||||||
processed_glossary.at(k).group = group
|
processed_glossary.at(k).group = group
|
||||||
|
|
30
src/lib.typ
30
src/lib.typ
|
@ -31,13 +31,7 @@
|
||||||
inset: (left: 2pt, right: 2pt),
|
inset: (left: 2pt, right: 2pt),
|
||||||
outset: (top: 4pt, bottom: 4pt),
|
outset: (top: 4pt, bottom: 4pt),
|
||||||
fill: ABB-GRAY-06,
|
fill: ABB-GRAY-06,
|
||||||
[#box(
|
[#box(fill: rgb(color), radius: 2pt, inset: 0pt, width: 0.75em, height: 0.75em) #text(
|
||||||
fill: rgb(color),
|
|
||||||
radius: 2pt,
|
|
||||||
inset: 0pt,
|
|
||||||
width: 0.75em,
|
|
||||||
height: 0.75em,
|
|
||||||
) #text(
|
|
||||||
font: default-config.style.code.font,
|
font: default-config.style.code.font,
|
||||||
size: default-config.style.code.size,
|
size: default-config.style.code.size,
|
||||||
content,
|
content,
|
||||||
|
@ -46,17 +40,13 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
#let url(label, content) = {
|
#let url(label, content) = {
|
||||||
link(label)[#underline(
|
link(label)[#underline(offset: 2pt, stroke: 0.5pt + blue, text(fill: blue)[
|
||||||
offset: 2pt,
|
#content
|
||||||
stroke: 0.5pt + blue,
|
#let domain = label.find(regex("\w+\.\w+(?:\.\w+)*"))
|
||||||
text(fill: blue)[
|
#if domain.len() > 0 [
|
||||||
#content
|
(#domain)
|
||||||
#let domain = label.find(regex("\w+\.\w+(?:\.\w+)*"))
|
]
|
||||||
#if domain.len() > 0 [
|
])]
|
||||||
(#domain)
|
|
||||||
]
|
|
||||||
],
|
|
||||||
)]
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// start of template pages and styles
|
// start of template pages and styles
|
||||||
|
@ -103,10 +93,10 @@
|
||||||
|
|
||||||
#if "glossary" in config.thesis and config.thesis.glossary != none {
|
#if "glossary" in config.thesis and config.thesis.glossary != none {
|
||||||
print-glossary(
|
print-glossary(
|
||||||
show-all: false,
|
show-all: true,
|
||||||
disable-back-references: true,
|
disable-back-references: true,
|
||||||
enable-group-pagebreak: true,
|
enable-group-pagebreak: true,
|
||||||
glossary(config.thesis.glossary, config),
|
glossary(config.thesis.glossary),
|
||||||
)
|
)
|
||||||
|
|
||||||
pagebreak(weak: true)
|
pagebreak(weak: true)
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
]
|
]
|
||||||
|
|
||||||
if text.lang == "de" [
|
if text.lang == "de" [
|
||||||
Der Inhalt dieser Arbeit mit dem Thema
|
Der Inhalt der dieser Arbeit mit dem Thema
|
||||||
] else if text.lang == "en" [
|
] else if text.lang == "en" [
|
||||||
The content of this work with the topic
|
The content of this work with the topic
|
||||||
]
|
]
|
||||||
|
@ -43,11 +43,11 @@
|
||||||
|
|
||||||
set par(justify: true)
|
set par(justify: true)
|
||||||
|
|
||||||
if text.lang == "de" [
|
if text.lang == "de" [
|
||||||
darf weder als Ganzes noch in Auszügen Personen außerhalb des Prüfungsprozesses und des Evaluationsverfahrens zugänglich gemacht werden, sofern keine anderslautende Genehmigung der Ausbildungsstätte vorliegt.
|
darf weder als Ganzes noch in Auszügen Personen außerhalb des Prüfungsprozesses und des Evaluationsverfahrens zugänglich gemacht werden, sofern keine anderslautende Genehmigung der Ausbildungsstätte vorliegt.
|
||||||
] else if text.lang == "en" [
|
] else if text.lang == "en" [
|
||||||
may not be made accessible to persons outside the examination process and the evaluation procedure, either as a whole or in excerpts, unless otherwise authorized by the training institution.
|
may not be made accessible to persons outside the examination process and the evaluation procedure, either as a whole or in excerpts, unless otherwise authorized by the training institution.
|
||||||
]
|
]
|
||||||
|
|
||||||
set align(horizon)
|
set align(horizon)
|
||||||
|
|
||||||
|
|
|
@ -80,15 +80,9 @@
|
||||||
"Table of Contents"
|
"Table of Contents"
|
||||||
}
|
}
|
||||||
|
|
||||||
let header-supplement = if (text.lang == "de") {
|
|
||||||
"Kapitel"
|
|
||||||
} else {
|
|
||||||
"chapter"
|
|
||||||
}
|
|
||||||
|
|
||||||
pagebreak(weak: true)
|
pagebreak(weak: true)
|
||||||
outline(
|
outline(
|
||||||
target: heading.where(supplement: [#header-supplement]),
|
target: heading.where(supplement: [chapter]),
|
||||||
title: title,
|
title: title,
|
||||||
indent: auto,
|
indent: auto,
|
||||||
)
|
)
|
||||||
|
|
|
@ -16,20 +16,17 @@
|
||||||
|
|
||||||
// title
|
// title
|
||||||
#v(2cm)
|
#v(2cm)
|
||||||
#par(justify: false, leading: 1.5em)[
|
#text(size: 2em, weight: "semibold", thesis.title)
|
||||||
#text(size: 2em, weight: "bold", hyphenate: false, thesis.title)
|
|
||||||
#linebreak()
|
|
||||||
// subtitle
|
|
||||||
#text(size: 2em, weight: "light", thesis.subtitle)
|
|
||||||
]
|
|
||||||
|
|
||||||
#set align(center + horizon)
|
// subtitle
|
||||||
|
#text(size: 1.5em, thesis.subtitle)
|
||||||
|
|
||||||
// type of paper
|
// type of paper
|
||||||
#text(size: 1.5em, weight: "medium", thesis.kind)
|
#v(1cm)
|
||||||
|
#text(size: 1.5em, weight: "bold", thesis.kind)
|
||||||
|
|
||||||
// faculty
|
// faculty
|
||||||
#pad()[
|
#pad(top: 0.5cm)[
|
||||||
#if text.lang == "de" [
|
#if text.lang == "de" [
|
||||||
Praxisphase des #author.semester Semesters an der Fakultät für #author.faculty
|
Praxisphase des #author.semester Semesters an der Fakultät für #author.faculty
|
||||||
#linebreak()
|
#linebreak()
|
||||||
|
@ -44,7 +41,7 @@
|
||||||
]
|
]
|
||||||
|
|
||||||
// university
|
// university
|
||||||
#pad()[
|
#pad(top: 0.5cm)[
|
||||||
#if text.lang == "de" [
|
#if text.lang == "de" [
|
||||||
an der
|
an der
|
||||||
] else if text.lang == "en" [
|
] else if text.lang == "en" [
|
||||||
|
@ -56,7 +53,7 @@
|
||||||
#author.university
|
#author.university
|
||||||
]
|
]
|
||||||
|
|
||||||
#set align(bottom + left)
|
#set align(horizon + left)
|
||||||
|
|
||||||
#if text.lang == "de" [
|
#if text.lang == "de" [
|
||||||
#table(
|
#table(
|
||||||
|
|
153
src/style.typ
153
src/style.typ
|
@ -12,13 +12,7 @@
|
||||||
#let watermark-color = luma(50%).transparentize(70%)
|
#let watermark-color = luma(50%).transparentize(70%)
|
||||||
|
|
||||||
#let watermark-pattern = pattern(size: (5pt, 5pt))[
|
#let watermark-pattern = pattern(size: (5pt, 5pt))[
|
||||||
#place(
|
#place(line(start: (50%, 0%), end: (50%, 100%), stroke: (paint: watermark-color, thickness: 3pt)))
|
||||||
line(
|
|
||||||
start: (50%, 0%),
|
|
||||||
end: (50%, 100%),
|
|
||||||
stroke: (paint: watermark-color, thickness: 3pt),
|
|
||||||
),
|
|
||||||
)
|
|
||||||
]
|
]
|
||||||
|
|
||||||
#let watermark(config) = if config.draft {
|
#let watermark(config) = if config.draft {
|
||||||
|
@ -35,10 +29,7 @@
|
||||||
#linebreak()
|
#linebreak()
|
||||||
document version.
|
document version.
|
||||||
#linebreak()
|
#linebreak()
|
||||||
#text(
|
#text(size: 0.75em, "Further usage without the authors consent is not permitted.")]]]
|
||||||
size: 0.75em,
|
|
||||||
"Further usage without the authors consent is not permitted.",
|
|
||||||
)]]]
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#let numberingH(c) = {
|
#let numberingH(c) = {
|
||||||
|
@ -75,19 +66,12 @@
|
||||||
|
|
||||||
show heading: set text(
|
show heading: set text(
|
||||||
font: style.heading.font,
|
font: style.heading.font,
|
||||||
weight: "bold"
|
weight: "semibold",
|
||||||
)
|
)
|
||||||
|
|
||||||
let header-supplement = if config.lang == "de" {
|
set heading(supplement: [chapter])
|
||||||
"Kapitel"
|
|
||||||
} else {
|
|
||||||
"chapter"
|
|
||||||
}
|
|
||||||
|
|
||||||
set heading(supplement: [#header-supplement])
|
|
||||||
|
|
||||||
set math.equation(numbering: "(1)")
|
set math.equation(numbering: "(1)")
|
||||||
show math.equation: set text(font: "Fira Math", size: 12pt)
|
|
||||||
|
|
||||||
// Set header spacing
|
// Set header spacing
|
||||||
show heading.where(level: 1): it => v(2em) + it + v(1em)
|
show heading.where(level: 1): it => v(2em) + it + v(1em)
|
||||||
|
@ -127,51 +111,37 @@
|
||||||
e => {
|
e => {
|
||||||
let (i, l) = e
|
let (i, l) = e
|
||||||
let n = i + 1
|
let n = i + 1
|
||||||
let n_str = if (calc.rem(n, 1) == 0) or (true and i == 0) {
|
let n_str = if (calc.rem(n, 1) == 0) or (true and i == 0) { text(font: style.code.font, size: style.code.size, fill: ABB-BLACK, str(n)) } else { none }
|
||||||
text(
|
|
||||||
font: style.code.font,
|
|
||||||
size: style.code.size,
|
|
||||||
fill: ABB-BLACK,
|
|
||||||
str(n),
|
|
||||||
)
|
|
||||||
} else {
|
|
||||||
none
|
|
||||||
}
|
|
||||||
(n_str + h(0.5em), raw(block: true, lang: lang, l))
|
(n_str + h(0.5em), raw(block: true, lang: lang, l))
|
||||||
},
|
})
|
||||||
)
|
}
|
||||||
} else {
|
else {
|
||||||
(
|
( ( 1fr, ),
|
||||||
(1fr,),
|
( left, ),
|
||||||
(left,),
|
e => {
|
||||||
e => {
|
let (i, l) = e
|
||||||
let (i, l) = e
|
raw(block: true, lang: lang, l)
|
||||||
raw(block: true, lang: lang, l)
|
}
|
||||||
},
|
)
|
||||||
)
|
}
|
||||||
}
|
}
|
||||||
}
|
grid(
|
||||||
grid(
|
stroke: none,
|
||||||
stroke: none,
|
columns: columns,
|
||||||
columns: columns,
|
rows: (auto,),
|
||||||
rows: (auto,),
|
gutter: 0pt,
|
||||||
gutter: 0pt,
|
inset: 0.25em,
|
||||||
inset: 0.25em,
|
align: (col, _) => align.at(col),
|
||||||
align: (col, _) => align.at(col),
|
fill: ABB-GRAY-06,
|
||||||
fill: ABB-GRAY-06,
|
..content
|
||||||
..content
|
.text
|
||||||
.text
|
.split("\n")
|
||||||
.split("\n")
|
.enumerate()
|
||||||
.enumerate()
|
.map(make_row)
|
||||||
.map(make_row)
|
.flatten()
|
||||||
.flatten()
|
.map(c => if c.has("text") and c.text == "" { v(1em) } else { c })
|
||||||
.map(c => if c.has("text") and c.text == "" {
|
)
|
||||||
v(1em)
|
}
|
||||||
} else {
|
|
||||||
c
|
|
||||||
})
|
|
||||||
)
|
|
||||||
},
|
|
||||||
)
|
)
|
||||||
#v(-1em)
|
#v(-1em)
|
||||||
#align(center + top, it.caption)
|
#align(center + top, it.caption)
|
||||||
|
@ -183,7 +153,7 @@
|
||||||
// based on: https://github.com/typst/typst/discussions/3871
|
// based on: https://github.com/typst/typst/discussions/3871
|
||||||
show figure.caption: c => [
|
show figure.caption: c => [
|
||||||
#if c.body.fields().len() > 0 {
|
#if c.body.fields().len() > 0 {
|
||||||
text(weight: "medium")[
|
text(weight: "semibold")[
|
||||||
#c.supplement #c.counter.display("1.1.1")
|
#c.supplement #c.counter.display("1.1.1")
|
||||||
]
|
]
|
||||||
c.separator
|
c.separator
|
||||||
|
@ -208,20 +178,8 @@
|
||||||
stroke: (x, y) => (
|
stroke: (x, y) => (
|
||||||
left: none,
|
left: none,
|
||||||
right: none,
|
right: none,
|
||||||
top: if y == 0 {
|
top: if y == 0 { 1.5pt } else if y < 2 { 1pt } else { 0.5pt },
|
||||||
1.5pt
|
bottom: if y == 0 { 1pt } else { 1.5pt } ))
|
||||||
} else if y < 2 {
|
|
||||||
1pt
|
|
||||||
} else {
|
|
||||||
0.5pt
|
|
||||||
},
|
|
||||||
bottom: if y == 0 {
|
|
||||||
1pt
|
|
||||||
} else {
|
|
||||||
1.5pt
|
|
||||||
},
|
|
||||||
),
|
|
||||||
)
|
|
||||||
|
|
||||||
// make table header bold
|
// make table header bold
|
||||||
show table.cell.where(y: 0): set text(weight: "bold")
|
show table.cell.where(y: 0): set text(weight: "bold")
|
||||||
|
@ -230,8 +188,7 @@
|
||||||
set par(
|
set par(
|
||||||
justify: true,
|
justify: true,
|
||||||
first-line-indent: 1em,
|
first-line-indent: 1em,
|
||||||
leading: 1em,
|
leading: 1em)
|
||||||
)
|
|
||||||
|
|
||||||
// give links a color
|
// give links a color
|
||||||
show link: set text(fill: style.link.color)
|
show link: set text(fill: style.link.color)
|
||||||
|
@ -244,26 +201,17 @@
|
||||||
header-ascent: style.header.content-padding,
|
header-ascent: style.header.content-padding,
|
||||||
footer-descent: style.header.content-padding,
|
footer-descent: style.header.content-padding,
|
||||||
margin: (
|
margin: (
|
||||||
top: style.page.margin.top + style.header.underline-top-padding + style
|
top: style.page.margin.top + style.header.underline-top-padding + style.header.content-padding,
|
||||||
.header
|
|
||||||
.content-padding,
|
|
||||||
bottom: style.page.margin.bottom + style.footer.content-padding,
|
bottom: style.page.margin.bottom + style.footer.content-padding,
|
||||||
left: style.page.margin.left,
|
left: style.page.margin.left,
|
||||||
right: style.page.margin.right,
|
right: style.page.margin.right),
|
||||||
),
|
|
||||||
numbering: (..nums) => {
|
numbering: (..nums) => {
|
||||||
let current-page = here().page()
|
let current-page = here().page()
|
||||||
if current-page == 1 {
|
if current-page == 1{
|
||||||
[]
|
[]
|
||||||
} else if query(<end-of-prelude>)
|
} else if query(<end-of-prelude>).first().location().page() > current-page {
|
||||||
.first()
|
|
||||||
.location()
|
|
||||||
.page() > current-page {
|
|
||||||
numbering("I", nums.pos().first())
|
numbering("I", nums.pos().first())
|
||||||
} else if query(<end-of-content>)
|
} else if query(<end-of-content>).first().location().page() >= current-page {
|
||||||
.first()
|
|
||||||
.location()
|
|
||||||
.page() >= current-page {
|
|
||||||
numbering("1", nums.pos().first())
|
numbering("1", nums.pos().first())
|
||||||
} else {
|
} else {
|
||||||
numbering("a", nums.pos().first())
|
numbering("a", nums.pos().first())
|
||||||
|
@ -280,11 +228,7 @@
|
||||||
set align(center)
|
set align(center)
|
||||||
numbering("I", page-counter)
|
numbering("I", page-counter)
|
||||||
} else if query(<end-of-content>).first().location().page() >= page-number {
|
} else if query(<end-of-content>).first().location().page() >= page-number {
|
||||||
numbering(
|
numbering("1 / 1", page-counter, counter(page).at(<end-of-content>).last())
|
||||||
"1 / 1",
|
|
||||||
page-counter,
|
|
||||||
counter(page).at(<end-of-content>).last(),
|
|
||||||
)
|
|
||||||
} else {
|
} else {
|
||||||
numbering("a", page-counter)
|
numbering("a", page-counter)
|
||||||
}
|
}
|
||||||
|
@ -304,13 +248,7 @@
|
||||||
// right align logo of DHBW
|
// right align logo of DHBW
|
||||||
align(right, image("res/DHBW.svg", height: style.header.logo-height)))
|
align(right, image("res/DHBW.svg", height: style.header.logo-height)))
|
||||||
|
|
||||||
} else if query(<end-of-content>)
|
} else if query(<end-of-content>).first().location().page() >= current-page and query(<end-of-prelude>).first().location().page() < current-page + 1 {
|
||||||
.first()
|
|
||||||
.location()
|
|
||||||
.page() >= current-page and query(<end-of-prelude>)
|
|
||||||
.first()
|
|
||||||
.location()
|
|
||||||
.page() < current-page + 1 {
|
|
||||||
let heading = currentH()
|
let heading = currentH()
|
||||||
|
|
||||||
heading.at(0)
|
heading.at(0)
|
||||||
|
@ -323,8 +261,7 @@
|
||||||
v(style.header.underline-top-padding - 1em)
|
v(style.header.underline-top-padding - 1em)
|
||||||
line(length: 100%)
|
line(length: 100%)
|
||||||
}
|
}
|
||||||
},
|
})
|
||||||
)
|
|
||||||
|
|
||||||
body
|
body
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
#import "abstract.typ": abstract, summary
|
#import "abstract.typ": abstract, summary
|
||||||
|
|
||||||
#show: dhbw-template.with((
|
#show: dhbw-template.with((
|
||||||
lang: "de",
|
lang: "en",
|
||||||
region: "de",
|
region: "en",
|
||||||
draft: false,
|
draft: false,
|
||||||
author: (
|
author: (
|
||||||
name: "Sven Vogel",
|
name: "Sven Vogel",
|
||||||
|
@ -51,15 +51,14 @@
|
||||||
#lorem(200)
|
#lorem(200)
|
||||||
@einstein
|
@einstein
|
||||||
|
|
||||||
= Lorem Ipsum 3 <sec:hello>
|
= Lorem Ipsum 3
|
||||||
|
|
||||||
#lorem(15) t `Hello, World!` #lorem(50)
|
#lorem(15) t `Hello, World!` #lorem(50)
|
||||||
|
|
||||||
$
|
$
|
||||||
angle.l a, b angle.r &= arrow(a) dot arrow(b) \
|
angle.l a, b angle.r &= arrow(a) dot arrow(b) \
|
||||||
&= a_1 b_1 + a_2 b_2 + ... a_n b_n \
|
&= a_1 b_1 + a_2 b_2 + ... a_n b_n \
|
||||||
&= sum_(i=1)^n a_i b_i. \
|
&= sum_(i=1)^n a_i b_i.
|
||||||
integral_2^4(3x + 4x^2)
|
|
||||||
$
|
$
|
||||||
|
|
||||||
#lorem(140)
|
#lorem(140)
|
||||||
|
@ -69,7 +68,7 @@ $
|
||||||
lorem(200),
|
lorem(200),
|
||||||
)
|
)
|
||||||
|
|
||||||
#url("https://github.com", "text") @sec:hello
|
#url("https://github.com", "text")
|
||||||
|
|
||||||
#lorem(50)
|
#lorem(50)
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
|
|
||||||
#import "../../src/lib.typ": dhbw-template
|
#import "../../src/lib.typ": dhbw-template
|
||||||
|
|
||||||
#show: dhbw-template.with((
|
#show: dhbw-template.with(
|
||||||
|
config: (
|
||||||
lang: none,
|
lang: none,
|
||||||
region: "en",
|
region: "en",
|
||||||
author: (
|
author: (
|
||||||
|
|
|
@ -1,34 +1,30 @@
|
||||||
|
|
||||||
#import "../../src/lib.typ": dhbw-template
|
#import "../../src/lib.typ": dhbw-template
|
||||||
|
|
||||||
#show: dhbw-template.with((
|
#show: dhbw-template.with(
|
||||||
lang: "en",
|
config: (
|
||||||
this-key-is-not-in-config: "Ha Ha",
|
lang: "en",
|
||||||
region: "en",
|
this-key-is-not-in-config: "Ha Ha",
|
||||||
author: (
|
region: "en",
|
||||||
name: "Sven Vogel",
|
author: (
|
||||||
semester: 4,
|
name: "Sven Vogel",
|
||||||
program: "Informationtechnology",
|
semester: 4,
|
||||||
course: "TINF19IT1",
|
program: "Informationtechnology",
|
||||||
faculty: "Technik",
|
course: "TINF19IT1",
|
||||||
university: "DHBW Mannheim",
|
faculty: "Technik",
|
||||||
company: "ABB AG",
|
university: "DHBW Mannheim",
|
||||||
supervisor: "Benny Goodman",
|
company: "ABB AG",
|
||||||
matriculation-number: 123456789,
|
supervisor: "Benny Goodman",
|
||||||
),
|
matriculation-number: 123456789),
|
||||||
thesis: (
|
thesis: (
|
||||||
title: "Unofficial ABB/DHBW Typst template",
|
title: "Unofficial ABB/DHBW Typst template",
|
||||||
subtitle: "for reports and thesises",
|
subtitle: "for reports and thesises",
|
||||||
submission-date: "23rd march 2020",
|
submission-date: "23rd march 2020",
|
||||||
timeframe: "1st january 2020 - 20th march 2020",
|
timeframe: "1st january 2020 - 20th march 2020",
|
||||||
kind: "T2000",
|
kind: "T2000",
|
||||||
summary: none,
|
summary: none,
|
||||||
abstract: none,
|
abstract: none,
|
||||||
keywords: ("IT", "other stuff"),
|
keywords: ( "IT", "other stuff" ),
|
||||||
bibliography: none,
|
bibliography: none,
|
||||||
glossary: none,
|
glossary: none,
|
||||||
appendices: none,
|
appendices: none)))
|
||||||
),
|
|
||||||
))
|
|
||||||
|
|
||||||
= Heading
|
|
||||||
|
|
|
@ -1,26 +1,24 @@
|
||||||
|
|
||||||
#import "../../src/lib.typ": dhbw-template
|
#import "../../src/lib.typ": dhbw-template
|
||||||
|
|
||||||
#show: dhbw-template.with((
|
#show: dhbw-template.with(
|
||||||
lang: "en",
|
config: (
|
||||||
region: "en",
|
lang: "en",
|
||||||
author: (
|
region: "en",
|
||||||
university: "DHBW Mannheim",
|
author: (
|
||||||
company: "ABB AG",
|
university: "DHBW Mannheim",
|
||||||
supervisor: none,
|
company: "ABB AG",
|
||||||
matriculation-number: 123456789,
|
supervisor: none,
|
||||||
),
|
matriculation-number: 123456789),
|
||||||
thesis: (
|
thesis: (
|
||||||
title: "Unofficial ABB/DHBW Typst template",
|
title: "Unofficial ABB/DHBW Typst template",
|
||||||
subtitle: "for reports and thesises",
|
subtitle: "for reports and thesises",
|
||||||
submission-date: "23rd march 2020",
|
submission-date: "23rd march 2020",
|
||||||
timeframe: "1st january 2020 - 20th march 2020",
|
timeframe: "1st january 2020 - 20th march 2020",
|
||||||
kind: "T2000",
|
kind: "T2000",
|
||||||
summary: none,
|
summary: none,
|
||||||
abstract: none,
|
abstract: none,
|
||||||
keywords: ("IT", "other stuff"),
|
keywords: ( "IT", "other stuff" ),
|
||||||
bibliography: none,
|
bibliography: none,
|
||||||
glossary: none,
|
glossary: none,
|
||||||
appendices: none,
|
appendices: none)))
|
||||||
),
|
|
||||||
))
|
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
|
|
||||||
#import "../../src/lib.typ": dhbw-template
|
#import "../../src/lib.typ": dhbw-template
|
||||||
|
|
||||||
#show: dhbw-template.with((
|
#show: dhbw-template.with(
|
||||||
|
config: (
|
||||||
lang: "en",
|
lang: "en",
|
||||||
region: "en",
|
region: "en",
|
||||||
author: (
|
author: (
|
||||||
|
@ -26,5 +27,3 @@
|
||||||
bibliography: none,
|
bibliography: none,
|
||||||
glossary: none,
|
glossary: none,
|
||||||
appendices: none)))
|
appendices: none)))
|
||||||
|
|
||||||
= Heading
|
|
||||||
|
|
Loading…
Reference in New Issue