[Tex/LaTex] Can’t find the latex code for the ⍎ (down tack jot) symbol

symbolsunicode

I'm new to LaTeX and I don't know how to use the CTAN package for typing APL symbols. So far I use the wasysym package but symbols like the ⍎ (down tack jot) are not included.

I have downloaded the apl CTAN package which is a directory of various files but I can't find instructions on how to use it in my LaTeX editor (TeXworks).

Please can you tell me how to use this package?

Best Answer

You can superimpose \perp and \circ.

\documentclass{article}
\usepackage{wasysym}

\makeatletter
\DeclareRobustCommand{\APLdtj}{%
  \begingroup\m@th
  \vphantom{$\perp$}%
  \ooalign{\hfil\raisebox{0.2ex}{$\circ$}\hfil\cr$\perp$\cr}%
  \endgroup
}
\makeatother

\begin{document}

\APLbox \quad \APLdtj \quad \APLcomment

\end{document}

enter image description here

Related Question