I woulg like get to get some way to be able to write pretty non-arrow symbols (isomorphism \cong or \simeq but also \neq or \subset and so on) in commutative diagrams.
For this pourpose I think TikZ package is the best solution. In this blog there ar some solutions, for example to \simeqsymbol: Isomorphisms in commutative diagrams in TikZ
However, the result is quite ugly. Since LaTeX can achived very fine result, I am sure there is a way to be able to define these symbols.
For completeness, I write a mwe with a common diagram using TikZ.
\documentclass[a4paper]{article}
\usepackage{amsmath}
\usepackage{mathrsfs}
\usepackage{mathtools}
\usepackage{stmaryrd}
\usepackage{tikz-cd}% diagramas
\usetikzlibrary{babel}
\begin{document}
\[
\begin{tikzpicture}
\matrix(m)[matrix of math nodes,
row sep=4em, column sep=4em,
text height=1.5ex, text depth=0.25ex]
{
A & B \\
C & D \\};
\path[->]
(m-1-1) edge node[auto] {$a$} (m-1-2);
\path[->]
(m-1-1) edge node[left] {$c$} (m-2-1);
\path[->]
(m-1-2) edge node[right] {$b$} (m-2-2);
\path[->]
(m-2-1) edge node[auto] {$d$} (m-2-2);
\end{tikzpicture}
\]
\end{document}
Thanks.



\cong” symbol? The result will never be pretty, I'm afraid. – egreg Oct 20 '17 at 10:36\cong,\simeq,\noteqand so on. Whay is it not possible? – Dog_69 Oct 20 '17 at 12:25