PGF-UMLCd:如何删除属性部分

PGF-UMLCd:如何删除属性部分

我需要一个 uml 类图,我正在使用 pgf-umlcd。我的“类”没有属性(因为它是一个 C 接口)。但属性部分仍然被绘制,我找不到删除它的选项。

我的课程如下:

______________________
|                    |
| class name         |
|--------------------|
|--------------------|
|                    |
| some functions.... |
| more functions.....|
|...                 |
---------------------

我想删除属性部分:

______________________
|                    |
| class name         |
|--------------------|                 
| some functions.... |
| more functions.....|
|...                 |
----------------------

最小示例:

\documentclass[tikz,border=10pt]{standalone}
\usepackage{tikz}
\usepackage{pgf-umlcd}
\begin{document}
\begin{tikzpicture}
\begin{class}[text width=7cm]{test}{0,0}
    \operation{execute(cmd : command) : abct}
\end{class}
\end{tikzpicture}
\end{document}

请帮助我:D我在文档中找不到任何内容......

答案1

实际上,这基本上是文档中提到的第一件事:

注意:如果您不想在图表中显示空白部分,请使用simplified选项,例如\usepackage[simplified]{pgf-umlcd}

代码输出

\documentclass[tikz,border=10pt]{standalone}
\usepackage[simplified]{pgf-umlcd}
\begin{document}
\begin{tikzpicture}
\begin{class}[text width=7cm]{test}{0,0}
    \operation{execute(cmd : command) : abct}
\end{class}
\end{tikzpicture}
\end{document}

相关内容