书写特定符号

书写特定符号

你能帮我写出下面的符号吗?

先感谢您。在此处输入图片描述

答案1

符号识别

对于符号具有 Unicode 代码点的情况,我已将符号绘制为shapecatcher.com。 这结果

U+23DA EARTH GROUND.

查找包含符号的字体

接下来我尝试了字符搜索文件格式信息列出了一些字体结果。我识别出 OpenType 字体FreeMono是 TeX Live 的一部分。

LuaLaTeX/XeLaTeX 示例

该字体FreeMono是 OpenType 字体,需要 LuaTeX 或 XeTeX。

\documentclass{article}

\usepackage{fontspec}
\newcommand*{\earthground}{%
  \begingroup
    \fontspec{FreeMono.otf}^^^^23da%
  \endgroup
}

\begin{document}
  \earthground
\end{document}

结果

包括图像

如果您使用pdflatex,则符号可以作为图像包含在内,例如:

%%% earthground.tex %%%
\documentclass{standalone}
\usepackage{fontspec}
\begin{document}%
  \fontspec{FreeMono.otf}%
  ^^^^23da
\end{document}

然后通过以下方式将文件转换为图像文件earthground.pdf

$ lualatex earthground

用户dvips可以将文件转换为 PostScript:

$ pdftops -eps earthground.pdf

最后,图像通常包含在内:

\usepackage{graphicx}
...
\includegraphics{earthground}

答案2

在您的问题中,上下文不清楚。但是,以下内容将生成类似于您所问的符号:

$\stackrel{\bot}{\hspace*{.3pt}\raise 2.5pt\hbox{\rule{4pt}{.3pt}\kern-4pt\lower 2pt\hbox{\rule{4pt}{.3pt}}}}$

相关内容