이전에 일부 코드를 사용했습니다.여기일부 변수의 조건부 독립을 나타내는 기호를 생성합니다. 에 대한 기호를 생성하는 방법을 아는 사람이 있습니까 not conditionally independent
? 즉, 아래 기호는 netween 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}