-1

In latex, how do I draw an auxiliary line, a line that is partitioned into many little lines, from one point to another point with tikz?

I know how to use regular lines, but not auxiliary.

1 Answers1

0

Perhaps you can use rnd?

\documentclass[margin=5mm]{standalone}
\usepackage{tikz}

\begin{document}
\begin{tikzpicture}
\draw plot[domain=0:1] (\x,rnd*0.2);
\end{tikzpicture}
\end{document}

Wiggly TikZ-line via rnd

  • is it possible to turn this into an arrow as well? So let this originate from point (a) to point (b)? – intStdu Mar 07 '23 at 09:45