使用 Tikz 绘制 Keynote 线条样式

使用 Tikz 绘制 Keynote 线条样式

在 tikz 中绘制一条线条的简单方法是什么,其样式类似于在 Apple Keynote 中创建的以下线条?

使用 Apple Keynote 创建的线条。

答案1

输出

\documentclass[border=10pt]{standalone}
\usepackage{tikz}
\begin{document}
  \begin{tikzpicture}
    %The targeted space (for reference)
    %\draw[blue](0,0.25)--(5,0.25); % Top line
    %\draw[red](0,0)--(5,0); % Bottom line
    \foreach \x in {1,2,...,2000}{ % 2000 random marks
      % rnd generates a number between [0, 1]
      % X coordinate values are between [0, 5]
      % Y coordinate values are between [0, 0.25]
      \filldraw[red] (rnd*5,rnd/4) circle (0.3pt);
      % Or draw rectanges instead.
      %\filldraw[red] (rnd*5,rnd/4) rectangle ++ (0.5pt, 0.5pt);
    }
  \end{tikzpicture}
\end{document}

相关内容