I'm using TIKZ-UML to create four simple usecase diagrams. I have made them individually in seperate files to make sure that they all compile as they should.
I include the required packages in my preamble and include a reference to the files containing the tikzpictures in my document. When I compile the first diagram it compiles (and shows) just fine, but the following three diagrams seem to be affected by a width stated in a \usecase of the first diagram.
This diagram is the first one that is included in the document:
\begin{figure}
\centering
\begin{tikzpicture}
\umlactor[y=4]{Supervisor}
\umlactor[y=2]{Co-Supervisor}
\umlactor[y=0]{Examinator}
\umlusecase[x=5, y=2, fill=lightgray!50, width=3cm]{Determining examiner availability}
\umlactor[x=10, y=2]{Secretary}
\umlassoc{Supervisor}{usecase-1}
\umlassoc{Co-Supervisor}{usecase-1}
\umlassoc{Examinator}{usecase-1}
\umlassoc{usecase-1}{Secretary}
\end{tikzpicture}
\caption{Scenario: Determining examiner availbility.}
\end{figure}
The other diagrams are much the same, only with a different text for the \usecase (and possibly an other width.
The preamble for the diagram contains:
\usepackage{tikz}
\usepackage{tikz-uml}
\usetikzlibrary{positioning,chains,fit,shapes,calc}
Link to example: First diagram OK, next one has the wrong width
Thank you for your time :)
