diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | .nix/derivation.nix | 5 | ||||
| -rw-r--r-- | typst/main.typ (renamed from typst/report.typ) | 33 | ||||
| -rw-r--r-- | typst/refs.bib | 19 |
4 files changed, 44 insertions, 14 deletions
@@ -1 +1,2 @@ result* +*.pdf diff --git a/.nix/derivation.nix b/.nix/derivation.nix index 5a1f1db..3be1695 100644 --- a/.nix/derivation.nix +++ b/.nix/derivation.nix @@ -1,6 +1,7 @@ { lib , stdenv , typst +, typstPackages }: stdenv.mkDerivation { @@ -11,7 +12,9 @@ stdenv.mkDerivation { nativeBuildInputs = [ typst - ]; + ] ++ (with typstPackages; [ + charged-ieee + ]); buildPhase = '' typst compile report.typ out.pdf diff --git a/typst/report.typ b/typst/main.typ index 112ed12..198fd66 100644 --- a/typst/report.typ +++ b/typst/main.typ @@ -1,17 +1,24 @@ -// Title Page -= Solid particle interaction in Stokes flow - -Author: "Claudius Holeksa" -Date: 2025-11-09 - -// Abstract -// == Abstract -// This is a brief summary of the report. It gives an overview of the objectives, methods, and conclusions. - -// Table of Contents -[toc] +#import "@preview/charged-ieee:0.1.3": ieee + +#show: ieee.with( + title: [Stokes flow - Particle interaction in low Reynolds Number environments], + abstract: [ + ], + authors: ( + ( + name: "Claudius Holeksa", + department: [CSSR], + organization: [NORCE Research AS], + location: [Bergen, Norway], + email: "clho@norceresearch.no" + ), + ), + index-terms: ("Scientific writing", "Typesetting", "Document creation", "Syntax"), + bibliography: bibliography("refs.bib"), + figure-supplement: [Fig.], +) -== Introduction += Introduction For the understanding of near-well injections multiple elements such as multiphase behaviour, particle-solid interaction and the geometry of the porous structure is required. diff --git a/typst/refs.bib b/typst/refs.bib new file mode 100644 index 0000000..c862e98 --- /dev/null +++ b/typst/refs.bib @@ -0,0 +1,19 @@ +@article{netwok2020, + title={At-scale impact of the {Net Wok}: A culinarically holistic investigation of distributed dumplings}, + author={Astley, Rick and Morris, Linda}, + journal={Armenian Journal of Proceedings}, + volume={61}, + pages={192--219}, + year=2020, + publisher={Automatic Publishing Inc.} +} + +@article{netwok2022, + title={{Net Wok}++: Taking distributed dumplings to the cloud}, + author={Morris, Linda and Astley, Rick}, + journal={Armenian Journal of Proceedings}, + volume={65}, + pages={101--118}, + year=2022, + publisher={Automatic Publishing Inc.} +} |
