I have the following MWE in PSTricks, showing a rectangle.
Code: Select all
\documentclass[pstricks,border=12pt]{standalone}
\usepackage{pstricks}
\begin{document}
\begin{pspicture}[showgrid=true](5,5)
\psframe(4,4)
\end{pspicture}
\end{document}
(4,1)
and (4,3)
. What is the easiest way to achieve this? I could of course just superimpose a white line, but that seems like ... uhm ... not the right way.Thanks in advance.