Difference between revisions of "Asymptote (Vector Graphics Language)"
Line 32: | Line 32: | ||
[/asy]</nowiki></pre> | [/asy]</nowiki></pre> | ||
− | + | <asy> | |
pair A,B,C,X,Y,Z; | pair A,B,C,X,Y,Z; | ||
A = (0,0); | A = (0,0); | ||
Line 43: | Line 43: | ||
draw(A--X, red); | draw(A--X, red); | ||
draw(B--Y,red); | draw(B--Y,red); | ||
− | draw(C--Z,red); | + | draw(C--Z,red);</asy> |
=== See also === | === See also === | ||
*[[LaTeX]] | *[[LaTeX]] |
Revision as of 19:26, 1 February 2014
Asymptote is a powerful vector graphics language designed for creating mathematical diagrams and figures. It can output images in either eps or pdf format, and is compatible with the standard mathematics typesetting language, LaTeX. It is also a complete programming language, and has cleaner syntax than its predecessor, MetaPost, which was a language used only for two-dimensional graphics.
Here is an example of an image that can be produced using Asymptote:
In a sense, Asymptote is the ruler and compass of typesetting.
You can use Asymptote on the AoPSWiki right now, by enclosing the Asymptote code within <asy>...</asy> tags. For example, the following code
<asy> draw((0,0)--(3,7),red); dot((0,0)); dot((3,7)); label("Produced with Asymptote "+version.VERSION,point(S),2S); </asy>
created the picture
And on the AoPS forums you can use [asy]..[/asy]
[asy] draw((0,0)--(3,7),red); dot((0,0)); dot((3,7)); label("Produced with Asymptote "+version.VERSION,point(S),2S); [/asy]
See also
- LaTeX
- AoPS's Getting Started with LaTeX guide.
- <url>index.php?f=519 Asymptote Forum on AoPS</url>