Asymptote DiagramsΒΆ

Tags to insert and format asymptote vector graphics diagrams

@asy{...}

Insert an asymptote image

contents

The figure in Asymptote syntax or the location of an asymptote source file.

attributes

scale=x

xcale the image by the specified factor

html

For html targets, asymptote images are rendered using asymptote and inserted as .svg files.

tex

For tex targets, asymptote images are inserted directly.

examples
@asy[scale=2.0]{
     size(200);
     draw(unitcircle);
     }