summaryrefslogtreecommitdiff
path: root/textproc/quarto/files/example-julia-fig-parametric.qmd
diff options
context:
space:
mode:
authorYuri Victorovich <yuri@FreeBSD.org>2025-04-06 16:46:12 -0700
committerYuri Victorovich <yuri@FreeBSD.org>2025-04-06 16:48:06 -0700
commita3510f7a13c358a703f2723db7b6c14bb8c1f240 (patch)
tree9211b812d172a7c151b3c0a1779de0308264e5d6 /textproc/quarto/files/example-julia-fig-parametric.qmd
parentmisc/py-gguf: update 0.16.0 → 0.16.0.5061 (diff)
textproc/quarto: update 1.6.42 → 1.7.21
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))
+```