像命令一样\notin
,我想创建一个\notBox
。
到目前为止我已经做了$\Box\!\!\!\!\diagdown$
,但看起来并不好。
也许我需要\diagdown
稍微提高一点。
请帮忙制作这样的符号。
答案1
让其stackengine
为您完成工作!
我还将\diagdown
其 改为/
,使符号类似于\notin
。
编辑:我添加了一个没有的解决方案stackengine
。
\documentclass{article}
\usepackage{amsmath,amssymb}
\usepackage{stackengine}
\usepackage{graphicx}
\newcommand{\notBox}{\mathrel{\stackinset{c}{}{c}{}{$/$}{$\Box$}}}
\newcommand{\notBoxsimple}{\mathrel{\ooalign{$\Box$\cr$\raise.24ex\hbox{$\mkern2.1mu/$}$\cr}}}
\begin{document}
Benchmark:
\[
A \notin B
\]
With \texttt{stackengine}:
\[
A \notBox B
\]
Without \texttt{stackengine}:
\[
A \notBoxsimple B
\]
\end{document}