逗号上方的符号

逗号上方的符号

我怎样才能在逗号上方放置符号?例如

数字

答案1

您可以\overset从 amsmath 使用:

\documentclass{article}
\usepackage{amsmath}

\begin{document}
\[\{L(\lambda)\ \overset{\otimes}{,}\ L(\mu)\}\]
\end{document}

我添加了可选空格以使其看起来更像您的示例:

在此处输入图片描述

正如评论中所述,您可以使用它\scriptscriptstyle\otimes缩小:

\documentclass{article}
\usepackage{amsmath}

\begin{document}
\[\{L(\lambda)\ \overset{\scriptscriptstyle\otimes}{,}\ L(\mu)\}\]
\end{document}

在此处输入图片描述

答案2

以下示例将\otimes逗号的上限设置为,并通过 转换为数学运算符\mathop。这还会减小 ⊗ 的大小。通过明确使用\scriptscriptstyle,可以进一步减小符号,请参阅 Manuel 的评论然后将结果包装进去\mathpunct以保留逗号作为标点符号的属性:

\documentclass{article}

\newcommand*{\commaotimes}{%
  \mathpunct{%
    \mathop{,}\limits^{\otimes}%
  }%
}
\newcommand*{\commaotimessmall}{%
  \mathpunct{%
    \mathop{,}\limits^{\scriptscriptstyle\otimes}%
  }%
}

\begin{document}
\[ \{ L(\lambda) \commaotimes L(\mu) \} \]
\[ \{ L(\lambda) \commaotimessmall L(\mu) \} \]
\end{document}

结果

评论:

  • 该符号在数学样式和\commatimessmall中效果很好。对于和 ,符号不会改变其大小,因为没有。\displaystyle\textstyle\scriptstyle\scriptscriptstyle\otimes\scriptscriptscriptstyle

答案3

一种可能性\stackrel{\otimes}{,}

$\left\{L\left(\lambda\right)\ \stackrel{\otimes}{,}\ L\left(\mu\right)\right\}$

在此处输入图片描述

相关内容