Math & Science ⇒ Diagram and '≅' sign using xymatrix
Diagram and '≅' sign using xymatrix
I would like to draw a vertical isomorphism sign (i.e. a vertical "\cong") using xymatrix. Can this be done?
To be more precise, the command "\ar@{=}[d]" draws a vertical equal sign, I would like to replace "=" with "≅".
Cheers
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Diagram and '≅' sign using xymatrix
It would be most precise if you provide a complete and compilable example of what you want to do.xetal wrote:[...] To be more precise, the command "\ar@{=}[d]" draws a vertical equal sign, I would like to replace "=" with "≅". [...]
Best regards
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Diagram and '≅' sign using xymatrix
For example, the code below, using commands from graphicx, produces a vertical \cong of twice its usual length. But it may be hard to put that in a matrix in the right spot... hard to say without knowing what you're trying to do.
Code: Select all
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\rotatebox{90}{\scalebox{2}[1]{$\cong$}}
\end{document}