我怎样才能在逗号上方放置符号?例如
答案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\}$