Math & ScienceNew Operator in LaTeX

Information and discussion about LaTeX's math and science related features (e.g. formulas, graphs).
Post Reply
pierce
Posts: 1
Joined: Sun Dec 30, 2012 2:07 am

New Operator in LaTeX

Post by pierce »

Hello all,

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

Recommended reading 2024:

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

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

cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

New Operator in LaTeX

Post by cgnieder »

Hi pierce,

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}
Regards
site moderator & package author
Post Reply