In the following example, I have drawn a couple of arrows in TikZ that are overlapping at one end.
\documentclass[12pt]{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\foreach \x in {1,...,10}
\draw[->] (0,0) -- (\x,0);
\end{tikzpicture}
\end{document}

Since the arrows are drawn separately, TikZ lays them on top of each other making them look thicker than normal. Is there any way to tell TikZ to not thicken lines/borders that are superimposed? Of course, I am looking for a general solution to this problem, not a quick fix for the simple example above.

[rotate{45}]option insidetikzpictureand recompile, even in Acrobat, again the lower arrows look thicker than the upper ones. Does that look so to you as well? – Ali Jun 23 '12 at 02:27rotate=45, the arrows look the same in Acrobat Reader 10.1.3 on Mac once you zoom in. – Peter Grill Jun 23 '12 at 03:20