Math & ScienceHow to produce a circled perpendicular sign?

Information and discussion about LaTeX's math and science related features (e.g. formulas, graphs).
Post Reply
xiaowang
Posts: 2
Joined: Thu Jun 30, 2011 8:02 am

How to produce a circled perpendicular sign?

Post by xiaowang »

I want to use a circled perpendicular sign to denote the orthogonal direct sum. It looks like \oplus except the bottom part of "+" is missing. This symbol is available in mathabx package as \obot. But I don't want to use this package since it changes the math font, and is incompatible with fourier package. How do I typeset it without using mathabx or mnsymbol? Thanks.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

kaiserkarl13
Posts: 707
Joined: Tue Mar 25, 2008 5:02 pm

How to produce a circled perpendicular sign?

Post by kaiserkarl13 »

Code: Select all

\documentclass{article}

\newcommand*{\myotop}{\perp\mkern-20.7mu\bigcirc}

\begin{document}
Here's the symbol:  $2 \myotop 3$.
\end{document}
Not perfect, but it may do in a pinch.
Post Reply