1

Can you help me to write the following symbol.

Thank you in advance.enter image description here

Yulia Spryn
  • 493
  • 6
  • 13

2 Answers2

10

Identification of the symbol

For the case the symbol has a Unicode code point, I have drawn the symbol in shapecatcher.com. The result:

U+23DA EARTH GROUND.

Finding a font that contains the symbol

Next I tried the character search of FileFormat.Info that lists some fonts as result. I recognized the OpenType font FreeMono as part of TeX Live.

Example for LuaLaTeX/XeLaTeX

The font FreeMono is a OpenType font that requires either LuaTeX or XeTeX.

\documentclass{article}

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

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

Result

Including as image

If you are using pdflatex, then the symbol could be included as image, e.g.:

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

Then the file is converted to the image file earthground.pdf via:

$ lualatex earthground

Users of dvips can convert the file to PostScript:

$ pdftops -eps earthground.pdf

Finally the image is included as usually:

\usepackage{graphicx}
...
\includegraphics{earthground}
Heiko Oberdiek
  • 271,626
0

In you question, the context is not clear. However, the following will generate a symbol similar to one that you are asking:

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