Ich habe zuvor Code vonHierum ein Symbol zu erzeugen, das die bedingte Unabhängigkeit einiger Variablen darstellt. Kennt jemand eine Methode zum Erzeugen eines Symbols für not conditionally independent
? Das heißt, das folgende Symbol, aber mit einem Schrägstrich durch das Symbol zwischen a
und c
. Danke.
etwas Code
\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}
das erzeugt
Antwort1
Ich bin mir nicht sicher, ob eine Skalierung des Symbols um 7 % Vorteile bringt. Ich schlage die Definitionen sowohl für das skalierte als auch das nicht skalierte Symbol vor.
\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}
Antwort2
Anstatt zusammengesetzte Symbole zu verwenden, können Sie eine Schriftart mit ⫫ (U+2aeb) wie stix verwenden.
Sie können einfach \not
für die Negation verwenden.
\documentclass{article}
\usepackage{stix}
\begin{document}
$a \Vbar b \mid c $
$a \not\Vbar b \mid c $
\end{document}
Antwort3
Sagen:
\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}