I got confused with whether or not I have to use \the.
\thein\special{papersize=\the\paperwidth,\the\paperheight}is mandatory.- But
\thein neither\begin{pspicture}(\the\paperwidth,\the\paperheight)nor\psframe[linecolor=red](\the\paperwidth,\the\paperheight)is mandatory.
\documentclass{minimal}
\usepackage{pstricks}
\paperwidth=72.27pt
\paperheight=72.27pt
\hoffset=-72.27pt
\voffset=-72.27pt
\topskip=0sp
\parindent=0sp
% it works
\special{papersize=\the\paperwidth,\the\paperheight}
% it does not work
%\special{papersize=\paperwidth,\paperheight}
\begin{document}
% it works
\begin{pspicture}(\the\paperwidth,\the\paperheight)
\psframe[linecolor=red](\the\paperwidth,\the\paperheight)
\end{pspicture}
%
% it also works
%\begin{pspicture}(\paperwidth,\paperheight)
%\psframe[linecolor=red](\paperwidth,\paperheight)
%\end{pspicture}
\end{document}
What is the rule whether or not I have to use \the?