My question seems to me as a tricky one. I'd like to define a binary operator (using something like
\mathbin
) whose subscript stands underneath it instead of the usual place, like a limit operator. The point is that the \limits
, \DeclareMathOperator*
or \operatorname*
macros don't stand for binary operators.Does anyone know of a command
\mathbin
-like setting the subscript as a \DeclareMathOperator*
does (ie underneath in \displaystyle
and on the side in \textstyle
) ?Of course, I could use something like :
Code: Select all
\newcommand{\mytimes}[2]{\mathbin{\operatorname*{\times}_{#1}^{#2}}}
\mathchoice
in order to manage the different styles). The issue is that I'd like to be able to use it with a handy _ and ^ notation :
Code: Select all
\[
\A \mytimes_B^C D
\]
Code: Select all
\[
\A \mytimes{B}{C} D
\]
Thanks for any help,
Kihanos