The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
45 views

MetaUML with LyX?

How to install MetaUML for LyX? How to use it? Is there a site where I can find resources about this subject? And if not, is there an equivalent tool for this not Dia?
0
votes
0answers
107 views

metaUML “Isolated expression” using Component [closed]

Hi i'm using metauml and Miktex 2.9. Why does this piece of code produce an error? I copy pasted it from the manual. input metauml; beginfig(1); Component.C("Business Logic")(); drawObject(C); ...
3
votes
1answer
186 views

How to change the font for metauml?

I am using the emp package in order to use metauml for drawing UML-models. So far so good. this is a minimal example: \documentclass{scrartcl} \usepackage{emp} \ifx\pdftexversion\undefined ...
4
votes
1answer
173 views

Non-intersecting lines on class diagram

\documentclass{article} \usepackage[shellescape]{gmp} \begin{document} \begin{mpost}[use,mpsettings={input metauml;}] Class.A("A")()(); Class.B("B")()(); Class.C("C")()(); Class.D("D")()(); B.n = ...
4
votes
1answer
156 views

metauml: Realization link doesn't work

\documentclass{article} \usepackage[shellescape]{gmp} \begin{document} \begin{figure} \begin{mpost}[use] input metauml; Interface.A("Interface") (); A.info.iAttributeStack.top := 0; ...
3
votes
1answer
92 views

metauml installation and usage error

This question is a bit broad but I am trying to install metauml (I am using Mac and texlive). I downloaded the package and ran the install script which put a metauml directory under the metapost ...
3
votes
2answers
184 views

Underline in metauml

\documentclass{article} \usepackage[shellescape]{gmp} \begin{document} \begin{figure} \begin{mpost}[use] input metauml; Class.A("A") ("-instance: A") ("-A()", "+instance(): A"); ...
6
votes
1answer
174 views

How can I use german umlauts in MetaUML

I have the following files: metaumlfile.mp: input metauml; beginfig(1); Class.Benutzer("Benutzer") () ("+üben(): void"); drawObjects(Benutzer); endfig; end ...
2
votes
1answer
367 views

Generate Entity-Relationship Diagram then generate SQL from that

Using a LaTeX or similar text-macro tool/library, how can I generate an Entity-Relationship Diagram then generate SQL from it?
1
vote
1answer
967 views

Generating UML Entity-Relationship Diagrams in LaTeX

Would you recommend LaTeX for this kind of UML diagramming? http://yuml.me/ is great for quickly drawing Use Case and Class diagrams. Please recommend a library of some sort for LaTeX, or ...
1
vote
1answer
701 views

MetaUML: via emp package for LaTeX gives no output

The following example prints only the figure's caption: \documentclass[a4paper,11pt]{article} \usepackage{emp} \ifx\pdftexversion\undefined \usepackage[dvips]{graphicx} \else ...