我正在尝试在 xz 平面上写一些垂直文本,基线与 z 轴平行......
这是我得到的结果,我希望垂直文本与 z 轴平行。
是否可以使用与该选项等效的选项planecorr=xyrot
,但适用于其他平面(例如我的情况中的 xz 平面)?或者只是一个技巧,也可以...
以下是我使用的代码:
\begin{pspicture}(-5,-3)(2,3)
\pstThreeDCoor[IIIDticks,xMin=-1,yMin=-1,zMin=-1,zMax=2]
\pstPlanePut[plane=xz,planecorr=normal](4,0,0){\Large\green\textbf{Vertical Text}}
\end{pspicture}
多谢
答案1
这个有可能
托马斯
\begin{pspicture}(-5,-3)(2,3)
\pstThreeDCoor[IIIDticks,xMin=-1,yMin=-1,zMin=-1,zMax=2]
\pstPlanePut[plane=xz,planecorr=normal](4,0,0){\rput[l]{30}(0,0){\Large\green\textbf{Vertical Text}}}
\pstPlanePut[plane=xz,planecorr=normal](4,0,0){\rput[l]{60}(0,0){\Large\blue\textbf{Vertical Text}}}
\pstPlanePut[plane=xz,planecorr=normal](4,0,0){\rput[l]{90}(0,0){\Large\magenta\textbf{Vertical Text}}}
\pstPlanePut[plane=xy,planecorr=normal](4,0,0){\rput[l]{-40}(0,0){\Large\magenta\textbf{Vertical Text}}}
\pstPlanePut[plane=yz,planecorr=normal](0,1,0){\rput[l]{60}(0,0){\Large\blue\textbf{Vertical Text}}}
\end{pspicture}