如何在万用表(代码)中排版以下表示蜂鸣的符号?

如何在万用表(代码)中排版以下表示蜂鸣的符号?

如何在万用表中排版以下蜂鸣符号?在此处输入图片描述

答案1

我的第一个想法和西格尔的,旋转 FontAwesome 字体中的符号。

\documentclass{article}
\usepackage{fontspec}
    \setmainfont{Linux Libertine O}
    \newfontfamily\fawesome{FontAwesome}
\usepackage{graphicx}
    \newcommand{\beep}{{\fawesome\raisebox{.75ex}{\rotatebox[origin=bl]{320}{\char"F09E}}}}

\begin{document}
Will the symbol \beep do?
\end{document}

在此处输入图片描述

答案2

如果你只需要一些圆形波浪,你可能需要expanding waves在这里使用:

% arara: pdflatex

\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{decorations.pathreplacing}
\tikzset{radiation/.style={decorate,decoration={expanding waves,segment length=3pt},thick}}

\begin{document}
Beep: \tikz[baseline=-.5ex]{\draw[radiation,decoration={angle=30}] (0,0) -- (.5,0);} 
\end{document}

在此处输入图片描述

相关内容