pst-dbicons 示例存在问题

pst-dbicons 示例存在问题

我目前正在尝试获取pstricks 数据库图标包可以工作,但最终总是会出现错误。

我曾尝试编译 mondial 示例(参见 dbicons-site,抱歉,我只能放入 2 个超链接),但也尝试编译 pdf 中的更短的示例:

\documentclass{article}
\usepackage[latin1]{inputenc}
\usepackage{pstricks,pst-node,pst-coil,color,pst-dbicons}
\seticonparams{entity}{shadow=true,fillcolor=black!30,fillstyle=solid}
\seticonparams{attribute}{fillcolor=black!10,fillstyle=solid}
\seticonparams{relationship} shadow=true,fillcolor=black!20,fillstyle=solid}

\begin{document}
\entity{Person}
\attributeof{Person}{30}[key]{Name}
\attributeof{Person}{90}[mv]{Nickname}
\attributeof{Person}[4em]{150}{phone}[phone\_no]
\attributeof{Person}{270}[mv]{wt}[weight\_at]
\attributeof{wt}{220}{date}
\attributeof{wt}{300}{weight}

\end{document}

以下是世界一号小的一个,其要点编号为 856439。

如果有人能指出我的错误我会很高兴。

答案1

您的系统似乎确实过时了。您可以在这里找到最新版本:http://texnik.dante.de

但是,您的示例有错误!使用此示例,我得到了附加的输出

\documentclass{article}
\usepackage[latin1]{inputenc}
\usepackage{pst-node,pst-dbicons}
\seticonparams{entity}{shadow=true,fillcolor=black!30,fillstyle=solid}
\seticonparams{attribute}{fillcolor=black!10,fillstyle=solid}
\seticonparams{relationship}{shadow=true,fillcolor=black!20,fillstyle=solid}

\begin{document}
\entity{Person}
\attributeof{Person}{30}[key]{Name}
\attributeof{Person}{90}[mv]{Nickname}
\attributeof{Person}[4em]{150}{phone}[phone\_no]
\attributeof{Person}{270}[mv]{wt}[weight\_at]
\attributeof{wt}{220}{date}
\attributeof{wt}{300}{weight}

\end{document}

在此处输入图片描述

相关内容