如何在 LaTeX 中排版地面符号 ⏚?

如何在 LaTeX 中排版地面符号 ⏚?

我如何输入地面LaTeX 中的符号 ⏚ ?

我并不是想在电路图中创建接地节点(答案在另一个问题)。相反,我只希望能够在数学模式下输入符号⏚。

答案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

相关内容