Tell me more ×
TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.

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]?

share|improve this question
See also tex.stackexchange.com/questions/27258/… – gavenkoa Nov 7 '11 at 22:08

1 Answer

up vote 12 down vote accepted

Use \draw[dotted] or \draw[densely dotted] or \draw[loosely dotted], for example.

share|improve this answer
It might be worth pointing to the documentation as well. The dash patterns are described in section 15.3.2 Graphic Parameters: Dash Pattern, starting on page 157 of the current documentation – Jake Aug 14 '11 at 5:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.