数学中的补集符号写法大全

标签:
补集符号 |
分类: Latex |
原文链接:http://tex.stackexchange.com/questions/15984/what-symbol-should-one-use-for-a-set-complement
示例:
\documentclass{minimal}
\usepackage{amsmath}
\usepackage{amssymb}
\newcommand{\eqn}
{\[
{(A \cup B)} = \stcomp{A} \cap \stcomp{B} \stcomp
\]}
\begin{document}
\newcommand{\stcomp}[1]{{#1}^\complement} \eqn
\renewcommand{\stcomp}[1]{\overline{#1}} \eqn
\renewcommand{\stcomp}[1]{{#1'}} \eqn
\renewcommand{\stcomp}[1]{\widetilde{#1}} \eqn
\renewcommand{\stcomp}[1]{{#1}^{\sim}} \eqn
\renewcommand{\stcomp}[1]{{#1}^{\mathsf{c}}} \eqn
\renewcommand{\stcomp}[1]{X\setminus{#1}} \eqn
\end{document}
http://i.stack.imgur.com/CA8ms.png
Of all of these I've used ^\complement
^\mathsf{c}