1

When I write this MathOperator (that I invented), the output of this code is not well. How could improve it? Thank you so much

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{mathtools}
\usepackage{stix}

\DeclareMathOperator{\bigdotcup}{\bigcup!!!!!!!!!;;\cdot}

\begin{document}

\Large

\section{Introduction}

\begin{equation} \bigdotcup_{i=1}^n \end{equation}

\end{document}

Puck
  • 1,208

1 Answers1

1

It seems you want \bigcupdot ?

enter image description here

\documentclass{article}

\usepackage{mathtools} \usepackage{stix}% or better: \usepackage{stix2}

\begin{document}

\Large

\section{Introduction}

\begin{equation} \bigcupdot_{i=1}^n \end{equation}

\end{document}

David Carlisle
  • 757,742