\documentclass[pstricks,border=12pt]{standalone}
\usepackage{pst-eucl}
\begin{document}
\begin{pspicture}(3,4)
\pstGeonode(1,1){A_i}
\pstGeonode[PointName=A_j](1,2){Aj}
\pstGeonode[PointName=R_{i,j,k,l}](1,3){Rijkl}
\end{pspicture}
\end{document}
如何R_{i,j,k,l}
在不使用的情况下防止我的节点标签向左移动PointNameSep
?
答案1
当然这不是一个错误,而是一个未识别的功能;)
您可以定义一个新键,例如,PointNameAlign
重新定义\Pst@PutPointLabel
以使用此键作为对齐参数\rput
:
\documentclass[pstricks,border=12pt]{standalone}
\usepackage{pst-eucl}
\makeatletter
\define@key[psset]{pst-eucl}{PointNameAlign}{\edef\psk@PointNameAlign{#1}}%
\psset[pst-eucl]{PointNameAlign=c}
\def\Pst@PutPointLabel#1{%DR 041104
\ifx\psk@PointName\@none\else
\rput[\psk@PointNameAlign]{*0}([nodesep=\ifx\psk@PointNameSep\@default{1em}\else\psk@PointNameSep\fi,
angle=\ifx\psk@PosAngle\@undef{0}\else\psk@PosAngle\fi]#1)%
{\ifPst@PtNameMath$\Pst@WhichLabel{#1}$\else\Pst@WhichLabel{#1}\fi}
\fi}%
\makeatother
\begin{document}
\begin{pspicture}(3,4)
\psset[pst-eucl]{PointNameAlign=l}
\pstGeonode(1,1){A_i}
\pstGeonode[PointName=A_j](1,2){Aj}
\pstGeonode[PointName=R_{i,j,k,l}](1,3){Rijkl}
\end{pspicture}
\end{document}
与原始定义唯一的区别是[\psk@PointNameAlign]
。
答案2
原因是,据我所知,标签的放置依赖于\rput
。 的默认值为PointNameSep
1em,然后标签本身放置在left
如此定义的位置 上。对于点右侧的标签,它应该在右侧,对于左侧的标签,它应该在左侧。一种解决方案是通过反复试验增加 PointNameSep 的值;另一种是设置PointName=none
和使用\uput
。这两种解决方案都用以下代码说明:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{mathtools}
\usepackage{pstricks}
\usepackage{pst-eucl}
\usepackage{auto-pst-pdf}
\begin{document}
\begin{pspicture}(0,0)(3,5)%
\pstGeonode(1,1){A_i}
\pstGeonode[PointName=A_j](1,2){Aj}
\pstGeonode[PointName=R_{i,j,k,l},PointNameSep =1.85em](1,3){Rijkl}
\pstGeonode[PointName=none](1,4){Sijkl}\uput{1pt}[r](Sijkl){$ S_{i,j,k,l} $}
\end{pspicture}
\end{document}