改变 mnode 指定的变化方式,以 psmatrix 为中心

改变 mnode 指定的变化方式,以 psmatrix 为中心

我经常使用 pstricks 和 psmatrix 来生成各种图形。我一直困扰的问题之一是如何明确控制(比如说)圆节点的半径。为了设置半径,我需要使用 mnode=Circle,而不是 mnode=circle。但是,我注意到,当我使用 mnode=Circle 时,节点内的文本/符号的“居中”会“偏离”一些可察觉的量(为了确认“不仅仅是我”,我让班上的 3-4 个不同的学生看了看,他们都得出了相同的结论)。

以下 MWE 演示了这个问题——第一张图使用 mnode=circle(所有内容都很好地集中在节点内),第二张图使用 mnode=Circle(内容未集中在中心)。也许我有点过于挑剔,但事实就是这样……

有建议吗?修复!?

谢谢...

\documentclass[10pt,letterpaper,oneside]{article}

\usepackage[dvips,top=1.2in,bottom=0.65in,left=1.0in,right=1.0in,includefoot]{geometry}

\usepackage{pst-node,pstricks-add,pst-func}
% set up float for putting figures where you want them
\usepackage{float}


\begin{document}

Using \texttt{circle}:

\begin{figure}[H]
\centering
\newpsstyle{Cempty}{fillstyle=solid,mnode=none}
\newpsstyle{Cfill}{fillstyle=solid,fillcolor=blue!7,shadow=false}
\rule[1.8cm]{0.0pt}{3.0cm}
\psscalebox{0.935}{
$
\psmatrix[colsep=1cm,rowsep=1cm,
    arrowscale=1.5,mnode=circle]
 [style=Cempty] ~ &  [name=N1,style=Cfill] \phi_tp_t & [style=Cempty]  ~\\
[name=N2,style=Cfill] \phi_. p_t &  [style=Cempty] ~ & [name=N3,style=Cfill]  \phi_t p_. \\
 [style=Cempty] ~ &  [name=N4,style=Cfill] \phi_.{p_.} &  [style=Cempty] ~
% node connections
\psset{nodesep=5pt,arrows=->}
\ncline[linecolor=red,linewidth=.05cm]{N1}{N2}
\nbput*[nrot=0]{\textbf{?}}
\ncline[linestyle=dashed]{N1}{N3}
\ncline[linestyle=dashed]{N1}{N4}
\ncline[linestyle=dashed]{N2}{N4}
\ncline[linecolor=red,linewidth=.05cm]{N3}{N4}
\naput*[nrot=0]{\textbf{?}}
\endpsmatrix
$
}
\end{figure}


Using \texttt{Circle}, in order to control radius of the nodes:

\begin{figure}[H]
\centering
\newpsstyle{Cempty}{fillstyle=solid,mnode=none}
\newpsstyle{Cfill}{fillstyle=solid,fillcolor=blue!7,shadow=false}
\rule[1.8cm]{0.0pt}{3.0cm}
\psscalebox{0.935}{
$
\psmatrix[colsep=1cm,rowsep=1cm,
    arrowscale=1.5,mnode=Circle,radius=0.55cm]
 [style=Cempty] ~ &  [name=N1,style=Cfill] \phi_tp_t & [style=Cempty]  ~\\
[name=N2,style=Cfill] \phi_. p_t &  [style=Cempty] ~ & [name=N3,style=Cfill]  \phi_t p_. \\
 [style=Cempty] ~ &  [name=N4,style=Cfill] \phi_.{p_.} &  [style=Cempty] ~
% node connections
\psset{nodesep=5pt,arrows=->}
\ncline[linecolor=red,linewidth=.05cm]{N1}{N2}
\nbput*[nrot=0]{\textbf{?}}
\ncline[linestyle=dashed]{N1}{N3}
\ncline[linestyle=dashed]{N1}{N4}
\ncline[linestyle=dashed]{N2}{N4}
\ncline[linecolor=red,linewidth=.05cm]{N3}{N4}
\naput*[nrot=0]{\textbf{?}}
\endpsmatrix
$
}
\end{figure}


\end{document} 

答案1

看起来\Circlenode位于基线的中心,而不是内容的中心。一种解决方法是将内容放在 中 \raisebox{\depth}。这很繁琐,但您可以定义一个快捷宏:

\documentclass[10pt,letterpaper,oneside]{article}

\usepackage[dvips,top=1.2in,bottom=0.65in,left=1.0in,right=1.0in,includefoot]{geometry}

\usepackage{pstricks-add,pst-func,}
% set up float for putting figures where you want them \usepackage{float}

\begin{document}

Using \texttt{circle}:

\begin{figure}[H]
\centering
\newpsstyle{Cempty}{fillstyle=solid,mnode=none}
\newpsstyle{Cfill}{fillstyle=solid,fillcolor=blue!7,shadow=false}
\rule[1.8cm]{0.0pt}{3.0cm}
\psscalebox{0.935}{
$
\psmatrix[colsep=1cm,rowsep=1cm,
    arrowscale=1.5,mnode=circle, radius = 1cm]
 [style=Cempty] ~ & [name=N1,style=Cfill] \phi_tp_t & [style=Cempty] ~\\
[name=N2,style=Cfill] \phi_. p_t & [style=Cempty] ~ & [name=N3,style=Cfill] \phi_t p_. \\
 [style=Cempty] ~ & [name=N4,style=Cfill] \phi_.{p_.} & [style=Cempty] ~
% node connections
\psset{nodesep=5pt,arrows=->}
\ncline[linecolor=red,linewidth=.05cm]{N1}{N2}
\nbput*[nrot=0]{\textbf{?}}
\ncline[linestyle=dashed]{N1}{N3}
\ncline[linestyle=dashed]{N1}{N4}
\ncline[linestyle=dashed]{N2}{N4}
\ncline[linecolor=red,linewidth=.05cm]{N3}{N4}
\naput*[nrot=0]{\textbf{?}}
\endpsmatrix
$
}
\end{figure}


Using \texttt{Circle}, in order to control radius of the nodes:

\begin{figure}[H]
\centering
\newpsstyle{Cempty}{fillstyle=solid,mnode=none}
\newpsstyle{Cfill}{fillstyle=solid,fillcolor=blue!7,shadow=false}
\rule[1.8cm]{0.0pt}{3.0cm}
\psscalebox{0.935}{
$
\psmatrix[colsep=1cm,rowsep=1cm,
 arrowscale=1.5,mnode=Circle, radius=0.55cm]%,C
 [style=Cempty] ~ &[name=N1,style=Cfill]\raisebox{\depth}{$ \phi_tp_t $} & [style=Cempty] ~\\
[name=N2,style=Cfill] \raisebox{\depth}{$ \phi_. p_t $} & [style=Cempty] ~ & [name=N3,style=Cfill] \raisebox{\depth}{$ \phi_t p_. $} \\
 [style=Cempty] ~ & [name=N4,style=Cfill] \raisebox{\depth}{$ \phi_.{p_.} $} & [style=Cempty] ~
% node connections
\psset{nodesep=5pt,arrows=->}
\ncline[linecolor=red,linewidth=.05cm]{N1}{N2}
\nbput*[nrot=0]{\textbf{?}}
\ncline[linestyle=dashed]{N1}{N3}
\ncline[linestyle=dashed]{N1}{N4}
\ncline[linestyle=dashed]{N2}{N4}
\ncline[linecolor=red,linewidth=.05cm]{N3}{N4}
\naput*[nrot=0]{\textbf{?}}
\endpsmatrix
$
}
\end{figure}

\end{document} 

在此处输入图片描述

答案2

看起来像是一个错误,将被修复。更新您当前的 TeX 发行版。对于 TeXLive,它从今天开始可用。如果您无法更新,请使用以下修复程序:

\documentclass[10pt,letterpaper,oneside]{article}
\usepackage{pst-node}
\makeatletter
\def\Circlenode@ii#1{%
    \begingroup
    \pst@useboxpar
    \pst@dima=\dimexpr\ht\pst@hbox-\dp\pst@hbox
    \divide\pst@dima\tw@
    \pssetlength\pst@dimb\psk@radius
    \setbox\pst@hbox=\hbox{%
        \Cnodeput@iv{#1}%
        \pscircle(.5\wd\pst@hbox,\pst@dima){\pst@dimb}%
        \box\pst@hbox}%
    \ifPst@nodealign \psboxseptrue \fi
    \ifpsboxsep \psCirclebox@sep \fi
    \leavevmode
    \ifPst@nodealign\pst@nodealign\fi
    \box\pst@hbox
    \endgroup}
\makeatother

\begin{document}
    Using \texttt{Circle}, in order to control radius of the nodes:

\newpsstyle{Cempty}{mnode=none}
\newpsstyle{Cfill}{fillstyle=solid,fillcolor=blue!7}
%
$
\psmatrix[colsep=1cm,rowsep=1cm,arrowscale=1.5,mnode=Circle,radius=0.55cm,
    emnode=p]
        &  [name=N1,style=Cfill] \phi_tp_t         &          [style=Cempty]~        \\
           [name=N2,style=Cfill] \phi_. p_t        &      & [name=N3,style=Cfill]  \phi_t p_. \\
        &  [name=N4,style=Cfill] \strut\phi_.{p_.} &  [style=Cempty]~
            % node connections
            \psset{nodesep=5pt,arrows=->}
            \ncline[linecolor=red,linewidth=.05cm]{N1}{N2}
            \nbput*[nrot=0]{\textbf{?}}
            \ncline[linestyle=dashed]{N1}{N3}
            \ncline[linestyle=dashed]{N1}{N4}
            \ncline[linestyle=dashed]{N2}{N4}
            \ncline[linecolor=red,linewidth=.05cm]{N3}{N4}
            \naput*[nrot=0]{\textbf{?}}
\endpsmatrix
$   

\end{document} 

在此处输入图片描述

相关内容