Math & Science ⇒ New Operator in LaTeX
New Operator in LaTeX
You are probably familiar with the sigma and pi operators. I am creating an exponential operator, given by omega. Is there a way to create a larger omega symbol with subscripts and superscripts directly below and above the symbol, like in sigma notation? Thanks
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
New Operator in LaTeX
Welcome to the LaTeX community.
Do you mean something like this:
Code: Select all
\documentclass{article}
\usepackage{mathtools}
\newcommand\Exp{\mathop{\Omega}}
\begin{document}
\[ \Exp_{i=1}^{10} x_i \]
\end{document}