You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 26, 2023. It is now read-only.
What steps will reproduce the problem?
- Use an escaped special character in a class name (mostly "\_", "\$", ...).
What version of the product are you using? On what operating system?
I'm using pgf-umlcd-0.2.1 on linux (Archlinux).
Please provide any additional information below.
There should be a way to give the displayed name independently of the internal
class name (that could be used as default otherwise).
Original issue reported on code.google.com by [email protected] on 13 Dec 2011 at 4:40
The text was updated successfully, but these errors were encountered:
Maybe it's better to use a label to write the name of the class instead of the shape-name (ID) itself. I made a workaround by adding a label argument to the class-environment.
\renewenvironment{class}[4][]% add another argument
{
\def\umlcdClassLabel{#4}% define label here
\begin{classAndInterfaceCommon}{#1}{#2}{#3}
}%
{
\calcuateNumberOfParts{}
% another change is in the following line, where "anchor=north" was moved before "this umlcd style" % this is an other tip from https://github.com/xuyuan/pgf-umlcd/pull/16
\node[anchor=north,this umlcd style] (\umlcdClassName) at (\umlcdClassPos)
{\textbf{\umlcdClassLabel} % ClassLabel instead of ClassName (ID)
\insertAttributesAndOperations{}
};
\end{classAndInterfaceCommon}
}
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Original issue reported on code.google.com by
[email protected]
on 13 Dec 2011 at 4:40The text was updated successfully, but these errors were encountered: