File: test-asymptote.tex

package info (click to toggle)
vim-vimtex 2.16-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 8,660 kB
  • sloc: makefile: 367; python: 103
file content (57 lines) | stat: -rw-r--r-- 1,280 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
\documentclass{article}
\usepackage[inline]{asymptote}

\begin{document}

Here is a venn diagram produced with Asymptote, drawn to width 4cm:

\begin{asy}
  size(4cm,0);
  pen colour1=red;
  pen colour2=green;

  pair z0=(0,0);
  pair z1=(-1,0);
  pair z2=(1,0);
  real r=1.5;
  path c1=circle(z1,r);
  path c2=circle(z2,r);
  fill(c1,colour1);
  fill(c2,colour2);

  picture intersection=new picture;
  fill(intersection,c1,colour1+colour2);
  clip(intersection,c2);

  add(intersection);

  draw(c1);
  draw(c2);

  // draw("$\A$",box,z1);              // Requires [inline] package option.
  // draw(Label("$\B$","$B$"),box,z2); // Requires [inline] package option.
  draw("$A$",box,z1);
  draw("$\V{B}$",box,z2);

  pair z=(0,-2);
  real m=3;
  margin BigMargin=Margin(0,m*dot(unit(z1-z),unit(z0-z)));

  draw(Label("$A\cap B$",0),conj(z)--z0,Arrow,BigMargin);
  draw(Label("$A\cup B$",0),z--z0,Arrow,BigMargin);
  draw(z--z1,Arrow,Margin(0,m));
  draw(z--z2,Arrow,Margin(0,m));

  shipout(bbox(0.25cm));
\end{asy}

\begin{asydef}
  // Global Asymptote definitions can be put here.
  import three;
  usepackage("bm");
  texpreamble("\def\V#1{\bm{#1}}");
  // One can globally override the default toolbar settings here:
  // settings.toolbar=true;
\end{asydef}

\end{document}