我之前使用過一些程式碼這裡產生一個符號來表示某些變數的條件獨立性。有誰知道生成符號的方法not conditionally independent
。也就是說,下面的符號但在a
和之間有一個正斜杠穿過符號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}