summaryrefslogtreecommitdiff
path: root/textproc/quarto/files/example-julia-fig-parametric.qmd
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/quarto/files/example-julia-fig-parametric.qmd')
-rw-r--r--textproc/quarto/files/example-julia-fig-parametric.qmd13
1 files changed, 13 insertions, 0 deletions
diff --git a/textproc/quarto/files/example-julia-fig-parametric.qmd b/textproc/quarto/files/example-julia-fig-parametric.qmd
new file mode 100644
index 000000000000..6f4a49fde3cf
--- /dev/null
+++ b/textproc/quarto/files/example-julia-fig-parametric.qmd
@@ -0,0 +1,13 @@
+```{julia}
+#| label: fig-parametric
+#| fig-cap: "Parametric Plots"
+
+using Plots
+
+plot(sin,
+ x->sin(2x),
+ 0,
+ 2π,
+ leg=false,
+ fill=(0,:lavender))
+```