summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/metapost/metauml/manual/fig/note.mp
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2019-02-03 22:45:55 +0000
committerKarl Berry <karl@freefriends.org>2019-02-03 22:45:55 +0000
commitc5d84d1a3ab85b1f314ff62717a7af3c6b75c7af (patch)
tree26333edc4a6082f37d75349f84eded8dbc0d5aef /Master/texmf-dist/doc/metapost/metauml/manual/fig/note.mp
parent2dcfe2f07af05124d5ebee4672d67d7eeae7af60 (diff)
metauml (3feb19)
git-svn-id: svn://tug.org/texlive/trunk@49923 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/metapost/metauml/manual/fig/note.mp')
-rw-r--r--Master/texmf-dist/doc/metapost/metauml/manual/fig/note.mp74
1 files changed, 74 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/metapost/metauml/manual/fig/note.mp b/Master/texmf-dist/doc/metapost/metauml/manual/fig/note.mp
new file mode 100644
index 00000000000..f04a5b5e4fe
--- /dev/null
+++ b/Master/texmf-dist/doc/metapost/metauml/manual/fig/note.mp
@@ -0,0 +1,74 @@
+% Part of the MetaUML manual.
+% Copyright (C) 2005 Ovidiu Gheorghies
+%
+% This program is free software; you can redistribute it and/or
+% modify it under the terms of the GNU General Public License
+% as published by the Free Software Foundation; either version 2
+% of the License, or (at your option) any later version.
+%
+% This program is distributed in the hope that it will be useful,
+% but WITHOUT ANY WARRANTY; without even the implied warranty of
+% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+% GNU General Public License for more details.
+%
+% You should have received a copy of the GNU General Public License
+% along with this program; if not, write to the Free Software
+% Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
+input metauml;
+input TEX;
+
+beginfig(1);
+ Note.A("This note", "has two lines.");
+ drawObject(A);
+endfig;
+
+beginfig(2);
+ save A, C;
+ Note.A("This is a class");
+ Class.C("Object")()();
+
+ A.sw = C.ne + (20, 20);
+
+ drawObjects(A, C);
+
+ clink(dashedLink)(A, C);
+endfig;
+
+beginfig(3);
+ save C;
+ Note.nA("This is the class name");
+ Note.nB("This is a key attribute");
+ Note.nC("This is a nice method");
+
+ Class.C("Object")("+id:int")
+ ("+clone()", "+serialize()");
+
+ topToBottom.left(10)(nA, nB, nC);
+ leftToRight(10)(C, nB);
+
+ drawObjects(C, nA, nB, nC);
+
+ clink(dashedLink)(C.namePict, nA);
+ clink(dashedLink)(C.attributeStack.pict[0], nB);
+ clink(dashedLink)(C.methodStack.pict[1], nC);
+endfig;
+
+beginfig(4);
+ save A;
+ Note.A("This class implements the formula:",
+ TEX("$\sum_1^n f(x)\cdot dx$"));
+ drawObjects(A);
+endfig;
+
+beginfig(5);
+ save A;
+ Note.A("Can you do it?",
+ TEX("$\sum_1^n f(x) \cdot dx " &
+ "\over \sum_1^m g(y) \cdot dy$"));
+ A.stack.info.spacing := 30;
+ A.stack.pict[1].info.ignoreNegativeBase := 0;
+ drawObjects(A);
+endfig;
+
+end