答案1
我用了tikz
创建过这样一个基于如何创建自己的具有限制的数学运算符?
但是您可能需要对其进行相应的修改以使其看起来“良好”,因为我对尺寸使用了一些随机值。
\documentclass{article}
\usepackage{tikz}
\usepackage{amsmath}
\newcommand{\nwedge}
{\operatorname{\begin{tikzpicture}
\draw[line width=0.1mm] (0,0)--(0.2,0.6)--(0.4,0);
\draw[line width=0.1mm] (-0.06,0)--(0.06,0);
\draw[line width=0.1mm] (0.34,0)--(0.46,0);
\end{tikzpicture}}}
\makeatletter
\DeclareRobustCommand\bigop[1]{%
\mathop{\vphantom{\sum}\mathpalette\bigop@{#1}}\nolimits@
}
\newcommand{\bigop@}[2]{%
\vcenter{%
\sbox\z@{$#1\sum$}%
\hbox{\resizebox{\ifx#1\displaystyle.9\fi\dimexpr\ht\z@+\dp\z@}{!}{$\m@th#2$}}%
}%
}
\makeatother
\newcommand{\bigV}[2]{{\bigop{\nwedge}}^{\textrm{\textbf{#1}}}_{\textrm{\textbf{#2}}}}
\begin{document}
$\nwedge_{a}^b$ some random text $\bigV{a}{b} $
\[\bigV{a}{b}\]
\end{document}
内联使用时,该\nwedge
命令不会缩放。缩放基于\sum
运算符。