Cristian
Cristian

Reputation: 21

How do I write this in LaTeX?

How do I write these symbols in LaTeX?

Upvotes: 2

Views: 974

Answers (1)

One possibility is the mathabx package:

\documentclass{article}
\usepackage{mathabx}

\begin{document}

\[
  \odiv
  \oplus
  \ominus
  \otimes
\]
    
\[
  \bigodiv
  \bigoplus
  \bigominus
  \bigotimes
\]
    
\end{document}

If you don't need the big versions, then the stix package would be another alternative.

enter image description here

Upvotes: 1

Related Questions