Is it possible to apply patterns to \vrule like dotted?
\documentclass{article}
\newdimen\le\le=50pt
\def\A{\vrule depth0pt height 50pt width 1 \le}
\begin{document}
\A
\end{document}
Is it possible to apply patterns to \vrule like dotted?
\documentclass{article}
\newdimen\le\le=50pt
\def\A{\vrule depth0pt height 50pt width 1 \le}
\begin{document}
\A
\end{document}
It is not too clear to me, which kind of dotted lines/areas are to be set.
The following example generates a dotted area using \leaders (also \cleaders can be used):
\documentclass{article}
\newdimen\le\le=50pt
\newcommand*{\A}{%
\leavevmode
\leaders\vbox{%
\leaders\vbox{%
\kern.5\fontdimen3\font
\hbox{.}%
\kern.5\fontdimen3\font
}\vskip50pt %
}\hskip\le\null
}
\begin{document}
\A
\end{document}
More about \leaders can be found in chapter 9 "Rules and Leaders" of "TeX by Topic" by Victor Eijkhout.