答案1
一种选择是定义一个命令给这个符号,例如从circuits.ee.IEC
库中获取(我不确定这个符号应该是 ord、rel 还是 bin,所以我选择了 bin;此外,没有关于大小或基线位置的信息,但所有这些属性都可以轻松调整):
\documentclass{article}
\usepackage{amsmath}
\usepackage{tikz}
\usetikzlibrary{circuits.ee.IEC}
\newcommand\Ground{%
\mathbin{\text{\begin{tikzpicture}[circuit ee IEC,yscale=0.6,xscale=0.5]
\draw (0,2ex) to (0,0) node[ground,rotate=-90,xshift=.65ex] {};
\end{tikzpicture}}}%
}
\begin{document}
$L\Ground {}$
\end{document}
另一个选项:这被列为 Unicode 字符'EARTH GROUND' (U+23DA)
,因此您可以使用 XeLaTeX 和支持该符号的字体:
\documentclass{article}
\usepackage{fontspec}
\setmainfont{Symbola}
\begin{document}
The earth ground symbol $⏚$.
\end{document}
fileformat.info
有一个list of possible fonts supporting the symbol
。