Example ref

This commit is contained in:
2026-01-30 23:38:42 +01:00
parent 31f82b848c
commit 9d3594a483
5 changed files with 16 additions and 5 deletions

View File

@@ -12,6 +12,7 @@ just
``` ```
Das default target mit `just` ist ein guter Startpunkt. Das default target mit `just` ist ein guter Startpunkt.
[Template](https://typst.app/universe/package/ilm) fuer das Dokument mit [Iosevka](https://typeof.net/Iosevka/) als Font.
## Personen ## Personen

View File

@@ -12,6 +12,7 @@ test:
# Build document and open in zathura # Build document and open in zathura
build: build:
rm main.pdf
typst compile main.typ typst compile main.typ
zathura main.pdf >/dev/zero 2>&1 & disown zathura main.pdf >/dev/zero 2>&1 & disown

View File

@@ -1,17 +1,18 @@
#import "@preview/ilm:1.4.2": * #import "@preview/ilm:1.4.2": *
#set text(lang: "en") #set text(lang: "de")
#show: ilm.with( #show: ilm.with(
title: [Numerik Portfolio], title: [Numerik Portfolio],
author: "Tom Witjes, Jonas Hahn, Noah Dechant und Jakob", author: "Tom Witjes, Jonas Hahn, Noah Dechant und Jakob",
date: datetime(year: 2026, month: 02, day: 02), date: datetime(year: 2026, month: 02, day: 02),
abstract: [Methoden und Ergebnisse des Numerik Portfolios im Wintersemester 2026.], abstract: [
Methoden und Ergebnisse des Numerik Portfolios im Wintersemester 2026.
],
bibliography: bibliography("refs.bib"), bibliography: bibliography("refs.bib"),
figure-index: (enabled: true), figure-index: (enabled: true),
table-index: (enabled: true), table-index: (enabled: true),
listing-index: (enabled: true), listing-index: (enabled: true),
) )
// Your content goes below. Literate programming @knuth:1984 in typst after Knuth?

View File

@@ -1,7 +1,6 @@
[project] [project]
name = "ws-numerik" name = "ws-numerik"
version = "0.1.0" version = "0.1.0"
description = "Add your description here"
readme = "README.md" readme = "README.md"
requires-python = ">=3.13" requires-python = ">=3.13"
dependencies = [ dependencies = [

View File

@@ -0,0 +1,9 @@
# Naming convention is to put the last name and year seperated by a colon
@book{knuth:1984,
title={Literate Programming},
author={Donald E. Knuth},
journal={The Computer Journal},
year={1984},
publisher={Oxford University Press}
}