[Tex/LaTex] How to write inclusion symbols diagonally

rotatingsymbols

I have two sequences of inclusions, say $A \subset B \subset C$ and $A \subset D \subset C$, and I want to combine these into one sequence. I don't know how to explain this very well, but the combined sequence should look like "a diamond" of inclusions. How can I do this in LaTeX?

EDIT: What I have in mind is something like this:
diamond

Best Answer

For example (some spacing correction may be needed):

\documentclass{article}
\usepackage{graphicx}

\begin{document}

\[
\rotatebox{45}{$
\begin{array}{ccc}
\rotatebox{-45}{$A$} & \subseteq & \rotatebox{-45}{$B$} \\
\rotatebox{-90}{$\subseteq$}& &\rotatebox{-90}{$\subseteq$}\\[9pt]
\rotatebox{-45}{$C$} & \subseteq &\rotatebox{-45}{$ D$}
\end{array}
$}
\]

\end{document}

enter image description here