Salve a tutti,
avrei bisogno di un piccolo aiuto con il prodotto cartesiano, ovvero la x che corrisponde a \times.
Io dovrei utilizzare una produttoria cartesiana ovvero una X più grande per inserire agevolmente apici e pedici.
In genere preferisco una “X” non “quadrata”: usa \sbigtimes come useresti \prod (che però è il simbolo più usato in questi casi)
`\makeatletter
\newcommand*\sbigtimes{\mathop{\mathpalette\@sbigtimes\relax}\displaylimits}
\newcommand*\@sbigtimes[2]{%
\vcenter{\hbox{\sffamily\@nameuse{\string#1bt}X}}\vphantom{\prod}}
\@namedef{\string\displaystyle bt}{\huge}
\@namedef{\string\textstyle bt}{\Large}
\@namedef{\string\scriptstyle bt}{\small}
\@namedef{\string\scriptscriptstyle bt}{\footnotesize}
\makeatother`
Altrimenti puoi usare questo \bigtimes:
`\makeatletter
\@ifundefined{@currsizeindex}
{\RequirePackage{relsize}\let\dolarger\relsize}
{\def\dolarger#1{\larger[#1]}}
\newcommand*\@@bigtimes[2]{\vphantom{\prod}
\vcenter{\hbox{\dolarger{4}$\m@th#1\mkern-2mu\times\mkern-2mu$}}}
\newcommand*\bigtimes{\mathop{\mathpalette\@@bigtimes\relax}\displaylimits}
\makeatother`
`no room for a new \count`
Scrivi \usepackage{etex} subito dopo la riga di \documentclass
Ciao
Enrico