From 7c3fe95e5282c2fca3159c93d8b3b7303d192869 Mon Sep 17 00:00:00 2001 From: "http://peter-simons.myopenid.com/" Date: Tue, 27 Nov 2012 08:24:30 -0400 Subject: [PATCH] Describe the asymptote directive. --- doc/plugins/ikiwiki/directive/asymptote.mdwn | 27 ++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 doc/plugins/ikiwiki/directive/asymptote.mdwn diff --git a/doc/plugins/ikiwiki/directive/asymptote.mdwn b/doc/plugins/ikiwiki/directive/asymptote.mdwn new file mode 100644 index 000000000..3036fc030 --- /dev/null +++ b/doc/plugins/ikiwiki/directive/asymptote.mdwn @@ -0,0 +1,27 @@ +The `asymptote` directive is supplied by the [[!iki plugins/asymptote +desc=asymptote]] plugin. + +This directive allows embedding [asymptote](http://asymptote.sourceforge.net/) +diagrams in a page. Example usage: + + \[[!asymptote src=""" + import geometry; + unitsize(1cm); + triangle t = triangle((0,0), (4,0), (0.5,2)); + show(La="$D$", Lb="$E$", Lc="", t); + dot(t.A^^t.B^^t.C); + point pD = midpoint(t.BC); dot(pD); + point pE = midpoint(t.AC); dot(pE); + draw(pD--pE); + point A_ = (pD-t.A)*2+t.A; dot("$A'$", A_, NE); + draw(t.B--A_--t.C, dashed); + draw(t.A--A_, dashed); + point E_ = midpoint(line(t.B,A_)); dot(Label("$E'$", E_, E)); + draw(E_--pD, dashed); + """]] + +The `asymptote` directive supports the following parameters: + +- `src` - The asymptote source code to render. + +[[!meta robots="noindex, follow"]] -- 2.32.0.93.g670b81a890