大洗牌符号?

大洗牌符号?

我正在寻找一个“大”版本(和类符号) 的 ш 符号(洗牌产品)。我只找到了一个二进制版本。 有任何想法吗?

答案1

只需缩放即可。

在此处输入图片描述

\documentclass{article}

% large ops, copied from shuffle font package
\DeclareFontFamily{U}{bigshuffle}{}
\DeclareFontShape{U}{bigshuffle}{m}{n}{
  <5-8> s*[1.7] shuffle7
  <8->  s*[1.7] shuffle10
}{}
\DeclareSymbolFont{BigShuffle}{U}{bigshuffle}{m}{n}
\DeclareMathSymbol\bigshuffle{\mathop}{BigShuffle}{"001}
\DeclareMathSymbol\bigcshuffle{\mathop}{BigShuffle}{"002}

% binary ops, for comparasion only
\usepackage{shuffle}

\begin{document}

\[
  a\shuffle b, x \cshuffle y
\]

\[
  \bigshuffle_i a_i, \bigcshuffle_{j=1}^n x_j
\]

\end{document}

相关内容