带圆圈的不等号

带圆圈的不等号

我怎样才能创建类似下图的带圆圈的非等号?

在此处输入图片描述

答案1

这是一个具有较小条的解决方案\not,因此符号完全包含在圆圈中,而圆圈不会太大。

编辑:我添加了另一个解决方案。该\circneqrel命令提供了一个带圆圈的\neq符号,该符号的间距为二进制关系符号,将圆圈视为符号的界限(这是我发布的第一个解决方案)。该\circneq命令提供了一个类似的符号,但调整了间距,就像它是一个简单的\neq符号一样。

\documentclass{article}
\usepackage{trimclip}
\newcommand{\newneq}{\clipbox{0pt 1.5pt 0pt 1.5pt}{$\neq$}}
\newlength{\bigcirclength}
\newlength{\neqlength}
\settowidth{\bigcirclength}{$\bigcirc$}
\settowidth{\neqlength}{$\neq$}
\newcommand{\circneqrel}{\mathrel{\makebox{$\bigcirc$\hspace*{-\bigcirclength}\makebox[\bigcirclength]{\newneq}}}}
\newcommand{\circneq}{\mathrel{\makebox{\makebox[\neqlength]{$\bigcirc$}\hspace*{-\neqlength}$\newneq$}}}
\begin{document}
\( E \circneqrel mc^3 \)

\( E \circneq mc^3 \)

\( E \neq mc^3 \)
\end{document}

答案2

尽管人们可能会对小的重叠部分吹毛求疵,但这种方法有两个优点:1)的间距\necirc与的间距相同\ne;2)它适用于各种数学风格。

\documentclass{article}
\usepackage{stackengine,scalerel}
\newcommand\necirc{\mathrel{\ThisStyle{\ensurestackMath{%
  \stackengine{0pt}{\SavedStyle\ne}{\SavedStyle\bigcirc}{O}{c}{F}{T}{L}}}}}
\begin{document}
$E\ne mc^3$

$E \necirc mc^3$

$\scriptstyle E\ne mc^3$

$\scriptstyle E \necirc mc^3$

$\scriptscriptstyle E\ne mc^3$

$\scriptscriptstyle E \necirc mc^3$
\end{document}

在此处输入图片描述

答案3

这里有两个解决方案:一个使用包\stackinset中的命令stackengine,一个使用\bigcirc稍微简化的版本\neq,另一个使用最近的包circledsteps

\documentclass{article}
\usepackage{graphicx}
\usepackage{stackengine}
\usepackage{circledsteps}

\newcommand{\circledneq}{\mathrel{\stackMath\stackinset{c}{0pt}{c}{0pt}{\scalebox{0.75}{$\neq $}}{\bigcirc}}}
\newcommand{\Circledneq}{\pgfkeys{/csteps/inner ysep=2.5pt, /csteps/inner xsep=2.5pt}\mathrel{\Circled{\neq}} }

\begin{document}

$E\circledneq mc^3 $

$E\Circledneq mc^3 $

\end{document} 

在此处输入图片描述

答案4

这只是一个简单的解决方案,使用简单的命令,其中我使用了stix名为的包的预定义符号\circledequal

在此处输入图片描述

%% Compile and read me!
\documentclass[12pt]{article}
\usepackage{stix,cancel}
\begin{document}
\[
A \cancel{\circledequal} B, A_{\cancel{\circledequal}} B
\]
\end{document}

附录:使用fdsymbol包您将获得与 Computer Modern (CM) 相同的字体。

在此处输入图片描述

\documentclass[a4paper,12pt]{article}
\usepackage{cancel,fdsymbol}
\begin{document}
$A\cancel{\oequal} B$
\end{document}

相关内容