A solution with the psmatrix environment, from pst-node. You can compile it with pdflatex, provided you use the compiler switch --enable-write18 (MiKTeX) or -shell-escape (TeX Live, MacTeX):
\documentclass[a4paper,11pt, pdf]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}%
\usepackage{lmodern}
\usepackage{pst-node}
\newpsobject{ncemptyline}{ncline}{linestyle=none}
\newcommand*\ncsubset[2]{\ncemptyline{#1}{#2}\ncput[nrot=:U]{\subset}}
\newcommand*\ncsubseteq[2]{\ncemptyline{#1}{#2}\ncput[nrot=:U]{\subseteq}}
\newcommand*\ncsubsetneq[2]{\ncemptyline{#1}{#2}\ncput[nrot=:U]{\varsubsetneq}}
\newcommand*\ncvarsubsetneq[2]{\ncemptyline{#1}{#2}\ncput[nrot=:U]{\scalebox{1}[-1]{$ \varsubsetneq $}}}
\pagestyle{empty}
\begin{document}
\[ \psset{nodesep=2pt, linewidth=0.6pt, rowsep=6mm, colsep=8mm}
\begin{psmatrix}
& [name=A] A \\
[name=B] B& [name=C] C\\
\ncline[arrows=->]{B}{A}
\ncsubset{B}{C}\ncsubseteq{C}{A}
\end{psmatrix}
\]
\end{document}
