有关 TikZ Squiggles 的帮助

有关 TikZ Squiggles 的帮助

我正在用 Ti 为书创作一系列图标Z。不过,我遇到了一个问题。下面的代码是图标的显示方式:它们是带有字母或数字的阴影圆圈。但是,我需要一个看起来像下图的图标。有人能告诉我如何调整下面的代码来重现这个吗?谢谢!

波浪线图标

\documentclass[11pt]{article}

%---Tikz Icons Section

\usepackage{pstricks}
\usepackage[framemethod=tikz]{mdframed}

\usetikzlibrary{shadows}
\usepackage{rotating}
\usepackage{etoolbox}
\newrobustcmd{\icon}[1]{\includegraphics[height=12pt]{#1}}


\begin{document}

\begin{center}
\resizebox{3cm}{3cm}{%
\begin{tikzpicture}[scale=4, transform shape]
\tikzstyle{every node} = [circle, circular drop shadow, fill=orange!80]
\node (a) at (0, 0) {!};

\end{tikzpicture}
}
\end{center}

\end{document}

答案1

比如这样。使用 控制线的宽度line width,使用 控制样本数samples,使用 之前的常数 控制噪声的包络函数rand

\begin{document}

\begin{center}
\begin{tikzpicture}
\draw[fill=black!80, circular drop shadow] (0,0) circle (1.5cm);

\draw[line width=1pt, color=white] plot [domain=-1.45:1.45, samples=64, smooth] (\x,{0.1*rand});
\end{tikzpicture}
\end{center}

\end{document}

结果: 在此处输入图片描述

相关内容