2024-07-08 07:55:38 +00:00
|
|
|
#import "../src/lib.typ": *
|
2024-07-01 14:02:42 +00:00
|
|
|
|
|
|
|
#import "abstract.typ": abstract, summary
|
|
|
|
|
2024-09-27 16:42:15 +00:00
|
|
|
#show: dhbw-template.with()
|
2024-07-01 14:02:42 +00:00
|
|
|
|
|
|
|
#import "@preview/wrap-it:0.1.0": wrap-content
|
|
|
|
|
|
|
|
= Lorem Ipsum
|
|
|
|
|
|
|
|
#lorem(25)
|
|
|
|
|
|
|
|
#lorem(100)
|
|
|
|
|
|
|
|
== Lorem Ipsum 2
|
|
|
|
|
2024-09-27 16:42:15 +00:00
|
|
|
#lorem(230)
|
2024-07-01 14:02:42 +00:00
|
|
|
|
2024-08-26 14:10:52 +00:00
|
|
|
= Lorem Ipsum 3 <sec:hello>
|
2024-07-01 14:02:42 +00:00
|
|
|
|
2024-07-26 07:38:02 +00:00
|
|
|
#lorem(15) t `Hello, World!` #lorem(50)
|
2024-07-01 14:02:42 +00:00
|
|
|
|
|
|
|
$
|
|
|
|
angle.l a, b angle.r &= arrow(a) dot arrow(b) \
|
2024-08-12 16:09:14 +00:00
|
|
|
&= a_1 b_1 + a_2 b_2 + ... a_n b_n \
|
2024-09-27 15:43:58 +00:00
|
|
|
&= sum_(i=1)^n a_i b_i. \
|
|
|
|
integral_2^4(3x + 4x^2)
|
2024-07-01 14:02:42 +00:00
|
|
|
$
|
|
|
|
|
|
|
|
#lorem(140)
|
|
|
|
|
|
|
|
#wrap-content(
|
|
|
|
figure(image("assets/digitaldog.jpg", width: 200pt), caption: [ Some image caption ]),
|
2024-08-12 16:09:14 +00:00
|
|
|
lorem(200),
|
|
|
|
)
|
2024-07-01 14:02:42 +00:00
|
|
|
|
2024-08-20 12:17:50 +00:00
|
|
|
#lorem(50)
|
|
|
|
|
2024-07-01 14:02:42 +00:00
|
|
|
#figure(
|
|
|
|
table(
|
2024-07-08 07:34:33 +00:00
|
|
|
columns: 3,
|
|
|
|
table.header[Date][Exercise Type][Calories Burned],
|
|
|
|
[2023-03-15], [Swimming], [400],
|
|
|
|
[2023-03-17], [Weightlifting], [250],
|
2024-07-11 13:36:55 +00:00
|
|
|
[2023-03-18], [Yoga], [200],
|
|
|
|
[2023-03-15], [Swimming], [400],
|
|
|
|
[2023-03-17], [Weightlifting], [250],
|
|
|
|
[2023-03-18], [Yoga], [200],
|
|
|
|
[2023-03-15], [Swimming], [400],
|
|
|
|
[2023-03-17], [Weightlifting], [250],
|
2024-08-12 16:09:14 +00:00
|
|
|
[2023-03-18], [Yoga], [200],
|
|
|
|
),
|
|
|
|
caption: [ Some table ],
|
|
|
|
)
|
2024-07-01 14:02:42 +00:00
|
|
|
|
|
|
|
#pagebreak()
|
|
|
|
|
2024-07-19 13:08:11 +00:00
|
|
|
#lorem(100)
|
|
|
|
|
2024-07-01 14:02:42 +00:00
|
|
|
#figure(
|
|
|
|
```rust
|
2024-08-12 16:09:14 +00:00
|
|
|
use std::env;
|
|
|
|
use std::fs::OpenOptions;
|
|
|
|
use std::io::Write;
|
2024-07-01 14:02:42 +00:00
|
|
|
|
2024-08-12 16:09:14 +00:00
|
|
|
fn main() {
|
|
|
|
println!("Hello, World!!!");
|
|
|
|
}
|
|
|
|
```,
|
|
|
|
caption: [Some code],
|
|
|
|
)
|
2024-07-01 14:02:42 +00:00
|
|
|
|
2024-07-19 13:08:11 +00:00
|
|
|
#lorem(100)
|
|
|
|
|
2024-07-17 13:48:15 +00:00
|
|
|
#pagebreak()
|
|
|
|
|
2024-07-01 14:02:42 +00:00
|
|
|
= Conclusion
|
|
|
|
|
2024-08-12 16:07:44 +00:00
|
|
|
#lorem(320)
|