%% %% A DANTE-Edition example %% %% Example 16-03-6 on page 238. %% %% Copyright (C) 2011 Herbert Voss %% %% It may be distributed and/or modified under the conditions %% of the LaTeX Project Public License, either version 1.3 %% of this license or (at your option) any later version. %% %% See http://www.latex-project.org/lppl.txt for details. %% %% %% ==== % Show page(s) 1 %% \documentclass[]{article} \pagestyle{empty} \setlength\textwidth{375.57637pt} \setlength\parindent{0pt} \usepackage[utf8]{inputenc} \usepackage{pst-node} \def\Lcs#1{\texttt{\textbackslash#1}} \begin{document} \Lcs{cnode}, in contrast to \Lcs{pnode}, creates a circular node with defined radius. Again you can put the node anywhere within text \makebox[2ex]{\cnode{1ex}{A}} (\verb+\cnode{2ex}{A}+). The centre of the node is on the base line. Note that \Lcs{cnode} doesn't reserve any space, so it's a good idea to put it inside a \Lcs{makebox} when using it in text. \begin{center} \begin{pspicture}[showgrid](2,2) \cnode[linecolor=red](1,1){3pt}{B} \nccurve[arrows=->,linestyle=dashed,angleA=-90,angleB=200]{A}{B} \end{pspicture} \end{center} \end{document}