我希望有无界卷积的常用符号。我试过了\stackrel{+}{\vee}
,但它会缩小正数,这是我不想要的。我也试过了\atop
,但符号变得又大又丑。我想要更像\pm
...的东西,但不幸的是,我很难找到它的代码。
答案1
互联网上的最小卷积符号各不相同,因此这个符号取自维基百科:
\documentclass{article}
\usepackage{amsmath,amssymb}% http://ctan.org/pkg/{amsmath,amssymb}
\DeclareMathOperator{\iconv}{\mathbin{\star_{\text{inf}}}}%
\begin{document}
\[ (f\iconv g)(x) = \inf\{f(x-y)+g(y)\,\vert\,y\in\mathbb{R}^n\} \]
\end{document}
这是另一张取自此来源:
\documentclass{article}
\usepackage{amsmath,amssymb}% http://ctan.org/pkg/{amsmath,amssymb}
\usepackage{graphicx}% http://ctan.org/pkg/graphicx
\DeclareMathOperator{\iconv}{%
\mathbin{\ooalign{\raisebox{-.5ex}{$\vee$}\cr\hidewidth\raisebox{.5ex}{\scalebox{.7}{+}}\hidewidth}}}%
\begin{document}
\[ (f\iconv g)(x) = \inf\{f(x-y)+g(y)\,\vert\,y\in\mathbb{R}^n\} \]
\end{document}
或者,自己创建(从上面创建,因此不需要graphicx
):
\documentclass{article}
\usepackage{amsmath,amssymb}% http://ctan.org/pkg/{amsmath,amssymb}
\DeclareMathOperator{\iconv}{%
\mathbin{\ooalign{\raisebox{-.5ex}{$\triangledown$}\cr\hidewidth\rule[.3ex]{.4pt}{1ex}\hidewidth}}}%
\begin{document}
\[ (f\iconv g)(x) = \inf\{f(x-y)+g(y)\,\vert\,y\in\mathbb{R}^n\} \]
\end{document}
如果你要在上标/下标中使用这些符号,那么还需要做更多的工作。\ooalign
符号构造的用法在\subseteq
+\circ
作为单个符号(“开子集”)。