I'm trying to setup UML components diagrams, using tikz-uml package. In cause of chujowa documentation I have some question's to you.
- How can I place provided interface at specified place on specified side of component.
- How can I name interface with specified name, not just
COMPONENT-west-interface - How can connect two required interfaces to one provided interface.
Here is a MWE:
\documentclass{standalone}
\usepackage[utf8]{inputenc}
\usepackage{tikz-uml}
\begin{document}
\begin{tikzpicture}
\umlbasiccomponent{A}
\umlprovidedinterface{A}
\end{tikzpicture}
\end{document}

