Eu tenho o seguinte MWE
\documentclass[pstricks,border=1pt, 10pt]{standalone}
\usepackage{pstricks,pst-plot}
\usepackage{pst-math}
\usepackage{amsmath}
\begin{document}
\begin{psgraph}[axesstyle=frame](0,0)(10,1){3cm}{3.0cm}%
\psdots[linecolor=black,dotstyle=diamond, dotsize=4.5pt] (5,0.5)
\end{psgraph}
\end{document}
Ele mostra uma única coordenada usando um diamante como estilo de ponto. Existe uma maneira de girar os marcadores em 90 graus no sentido horário e anti-horário?
Responder1
Usardotangle
\documentclass[pstricks,border=20pt]{standalone}
\usepackage{pst-plot}
\begin{document}
\begin{psgraph}[axesstyle=frame](0,0)(10,1){3cm}{3.0cm}%
\psdots[dotstyle=diamond, dotsize=4.5pt](5,0.5)
\psdots[linecolor=red,dotstyle=diamond,dotsize=4.5pt,dotangle=90](5,0.3)
\end{psgraph}
\end{document}