以前、私は以下のコードをいくつか使用しましたここいくつかの変数の条件付き独立性を表すシンボルを生成します。 のシンボルを生成する方法を誰か知っていますか。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
構築された記号を使用する代わりに、stixなどの⫫(U+2aeb)を含むフォントを使用することができます。
\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}