forall을 어떻게 부정하나요?

forall을 어떻게 부정하나요?

우리 대학의 슬라이드 중 하나에서는 \forall의 부정이 사용되었습니다. 그것은 다음과 같이 보였습니다:

기호를 사용하고 싶어서 다음을 사용하여 검색했습니다.이 StackExchange 게시물, 그러나 어디서도 찾을 수 없었습니다.

심지어 사용되나요? 그렇다면 LaTeX 명령은 무엇입니까?

답변1

나는 그것을 본 적이 없습니다. 그래도:

\documentclass{article}

\newcommand{\nforall}{%
  \ooalign{$\forall$\cr\hidewidth$\!/$\hidewidth\cr}%
}

\begin{document}

\[
\nforall x\in A : F
\]

\[
\lnot\forall x\in A : F
\]

\end{document}

여기에 이미지 설명을 입력하세요

답변2

나의 겸손한 제안은 대안으로 cancel패키지를 사용하는 것입니다. 여기에 이미지 설명을 입력하세요

%% Compile and read me!
\documentclass[a4paper,12pt]{article}
\usepackage{amsmath,amssymb}
\usepackage{cancel}
\begin{document}
${\cancel \forall} x\in A : F$
\end{document}

답변3

다른 사람들은 이것을 복잡하게 만드는 것 같습니다.

\documentclass{article}
\begin{document}
$\not \forall x \in A: F$
\end{document}

여기에 이미지 설명을 입력하세요

관련 정보