Can you help me to write the following symbol.
Thank you in advance.
For the case the symbol has a Unicode code point, I have drawn the symbol in shapecatcher.com. The result:
U+23DA EARTH GROUND.
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.
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}
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}
fontspec! ha ha. OK. So we need to run lualatex or xelatex.
– Jagath
Jul 19 '13 at 08:35
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}}}}$
\perpand=. I think first in$\underline{\underline{\displaystyle\perp}}$but in this way the bottom lines are wider. – Fran Jul 19 '13 at 08:11