HomeDownloadsGoals and PropagandaFAQInstallation HowTo-sContributorsNews
 

MetaUML: Notes

Notes

notes example 1
Note.A("An important", "UML note");
Note.B("Another note");

leftToRight(20)(A, B);
drawObjects(A, B);

clink(dashedLink)(A, B);
notes example 2
input metauml;
input TEX;

beginfig(5);
  Note.A("This class implements the formula:", 
          TEX("$\sum_1^n f(x)\cdot dx$"));
  drawObjects(A);
endfig;

end