Instead of drawing a dashed line as follows:
\draw [dashed] (10,1) -- (10,11);
I would like to draw a list of dots from (10,1) to (10,11), like ........., but vertically. Could anyone tell me what to put at the place of [dashed]?
Instead of drawing a dashed line as follows:
\draw [dashed] (10,1) -- (10,11);
I would like to draw a list of dots from (10,1) to (10,11), like ........., but vertically. Could anyone tell me what to put at the place of [dashed]?
Use \draw[dotted] or \draw[densely dotted] or \draw[loosely dotted], for example.