当使用 pstricks 创建图片时,我想进行一些简单的计算以正确定位。因此我使用“fp”包。事实证明,使用 \FPeval 命令似乎会将整个 pspicture 坐标系稍微向右移动。每次执行 \FPeval 时。有人建议解决这个现象吗?
\documentclass{scrartcl}
\usepackage[nomessages]{fp}% http://ctan.org/pkg/fp
\usepackage{pstricks, pst-node, pst-plot}
\begin{document}
\begin{pspicture}[showgrid](-1, -1)(2, 1)
\cnode(1, 0){0pt}{itemID B}%
\FPeval\itemPosx{10}
\cnode(1, 0){0pt}{itemID B}%
\end{pspicture}
\end{document}
答案1
%
末尾有一个缺失\FPeval
\FPeval\itemPosx{10}%
没有它,后面就会有一个空格。PSTricks 宏本身会杀死所有粘连,但不会杀死其他宏。你需要什么样的计算?你可以使用 PS 坐标,(! whatever do you need)
它可以计算任何坐标。