23 lines
445 B
Typst
23 lines
445 B
Typst
#show raw: set text(size: .8em)
|
|
|
|
#let midas = raw(
|
|
block: true,
|
|
lang: "midas",
|
|
read("../code/example_pipeline/custom_types.midas")
|
|
)
|
|
|
|
#let python = raw(
|
|
block: true,
|
|
lang: "python",
|
|
read("../code/example_pipeline/pipeline.py")
|
|
)
|
|
|
|
#figure(
|
|
midas,
|
|
caption: [Example Pipeline: custom type definitions]
|
|
) <fig:example-pipeline-types>
|
|
|
|
#figure(
|
|
python,
|
|
caption: [Example Pipeline: Python source code]
|
|
) <fig:example-pipeline-code> |