非条件独立的符号

非条件独立的符号

我以前用过一些代码这里生成一个符号来表示某些变量的条件独立性。有人知道生成符号的方法吗not conditionally independent?也就是说,下面的符号,但在符号 netweena和之间有一个正斜杠c。谢谢。

一些代码

\documentclass{article}

\usepackage{amsmath}
\usepackage{graphicx}

\begin{document}

% function for conditional independence - from link above    
\newcommand{\bigCI}{\mathrel{\text{\scalebox{1.07}{$\perp\mkern-10mu\perp$}}}}

a $\bigCI$ c $\mid$ b

\end{document}

产生

在此处输入图片描述

答案1

我不确定将符号缩放 7% 有什么好处。我建议对缩放和未缩放的符号都进行定义。

\documentclass{article}
\usepackage{amsmath,graphicx,centernot}

% function for conditional independence - from link above
\newcommand{\bigCI}{\mathrel{\text{\scalebox{1.07}{$\perp\mkern-10mu\perp$}}}}
\newcommand{\nbigCI}{\centernot{\bigCI}}

\newcommand{\CI}{\mathrel{\perp\mspace{-10mu}\perp}}
\newcommand{\nCI}{\centernot{\CI}}

\begin{document}

$a \bigCI c \mid b$ and $a \nbigCI c \mid b$

$a \CI c \mid b$ and $a \nCI c \mid b$

\end{document}

在此处输入图片描述

答案2

除了使用内置符号外,您还可以使用带有 ⫫ (U+2aeb) 的字体,例如 stix

您可以直接用\not它来表示否定。

在此处输入图片描述

\documentclass{article}

\usepackage{stix}

\begin{document}

$a \Vbar b \mid c $


$a \not\Vbar b \mid c $

\end{document}

答案3

说:

\documentclass{article}
\usepackage{mathtools,cancel}
\begin{document}

% function for conditional independence - from link above
\newcommand{\bigCI}{\mathrel{\text{\scalebox{1.07}{$\perp\mkern-10mu\perp$}}}}
\newcommand{\nbigCI}{\cancel{\mathrel{\text{\scalebox{1.07}{$\perp\mkern-10mu\perp$}}}}}
a $\bigCI$ c $\mid$ b

a $\nbigCI$ c $\cancel{\mid}$ b

\end{document}

取消关系

相关内容