I want to put a circle around the
\bot
symbol in the {displaymath}
environment. How do I do this?Thank you.
\bot
symbol in the {displaymath}
environment. How do I do this?NEW: TikZ book now 40% off at Amazon.com for a short time.
\obot
or \bigobot
. In such cases it can also be helpful to use Detexify.\obot
and I could use it but it changes the size of the \bot
symbol. Is there any way of surrounding the symbol maintaining it's size?Code: Select all
\documentclass{article}
\usepackage{tikz}
\newcommand*\circled[1]{\tikz[baseline=(char.base)]{
\node[shape=circle,draw,inner sep=1pt] (char) {#1};}}
\begin{document}
\[ \bot \quad \circled{$\bot$} \]
\end{document}
\bot
with a circle around, properly aligned at the baseline of the \bot
:NEW: TikZ book now 40% off at Amazon.com for a short time.