Initial commit
This commit is contained in:
52
example/paper.typ
Normal file
52
example/paper.typ
Normal file
@@ -0,0 +1,52 @@
|
||||
#import "../dhsn.typ": dhsn
|
||||
|
||||
#show: dhsn.with(
|
||||
bib: bibliography("sources.yml"),
|
||||
assignment-date: datetime(year: 2025, month: 7, day: 20)
|
||||
)
|
||||
|
||||
= Kapitel 1
|
||||
Im Fließtext kann ich auf #ref(<data>) verweisen.
|
||||
|
||||
== Definition
|
||||
|
||||
Leider muss ich auf das tolle Buch verweisen #footnote[Vgl. @makeityourself, S. 10]
|
||||
|
||||
Google #footnote[Vgl. @google]
|
||||
|
||||
Hier ist eine Komplizierte Formel:
|
||||
$ I(t) = (d Q(t)) / (d t) $
|
||||
|
||||
...aber es geht noch schlimmer:
|
||||
|
||||
$ arrow(F_L) &= q dot arrow(v) times arrow(B) \
|
||||
|arrow(F_L)| &= q |arrow(v)| dot |arrow(B)| dot sin(phi)
|
||||
$
|
||||
|
||||
#pagebreak()
|
||||
#set heading(numbering: "A")
|
||||
#counter(heading).update(0)
|
||||
= Anhang
|
||||
|
||||
#grid(
|
||||
columns: (50%, 50%),
|
||||
align: bottom,
|
||||
figure(
|
||||
```go
|
||||
import fmt
|
||||
func main() {
|
||||
fmt.Println("Hallo Welt")
|
||||
}
|
||||
```,
|
||||
caption: "Beispiel-Programm in golang",
|
||||
),
|
||||
[#figure(
|
||||
table(
|
||||
columns: 2,
|
||||
"A", $overline("A")$,
|
||||
"0", "1",
|
||||
"1", "0",
|
||||
),
|
||||
caption: "Beispieldaten",
|
||||
)<data>],
|
||||
)
|
||||
Reference in New Issue
Block a user