我的问题与如何创建更长的 \swarrow - TeX,然而我无法将这个答案应用到我的情况中。
我想在出现在不同行的两个对象之间创建一个长 \swarrow。更准确地说,这是我的代码:
\documentclass[10pt]{amsart}
\usepackage{amssymb}
\begin{document}
\[0\to \underbrace{\cap_{i=1}^{4} A_{g_i}}_{\text{black}}\rtimes G\to A\rtimes G\to \frac{A}{\cap_{i=1}^{4} A_{g_i}}\rtimes G\to 0\]
$\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \swarrow$
\[0\to \underbrace{\frac{\sum_{j=1}^{4}\cap_{i\neq j}A_{g_i}}{\cap_{i=1}^{4} A_{g_i}}}_{\text{dark gray}}\rtimes G\to \frac{A}{\cap_{i=1}^{4} A_{g_i}}\rtimes G\to \frac{A}{\sum_{j=1}^{4}\cap_{i\neq j}A_{g_i}}\rtimes G\to 0\]
\end{document}
我想在第一行零之前的最后一个对象和第二行中间的对象之间创建一个箭头(以引起人们的注意,它们是完全相同的对象)。
我感谢您的帮助!
答案1
感谢用户@Phelype Oleinik 和@daleif 的建议,我已经完成了代码,tikz-cd
希望这个答案能够符合您的要求。
\documentclass[10pt]{amsart}
\usepackage{tikz-cd,amssymb}
\begin{document}
\begin{tikzcd}[row sep=.5pt]
0 \arrow[r] & \underbrace{\cap_{i=1}^{4} A_{g_i}}_{\mathrm{black}}\rtimes G \arrow[r] & A\rtimes G \arrow[r] & \frac{A}{\cap_{i=1}^{4} A_{g_i}}\rtimes G \arrow[r] \arrow[ld] & 0 \\
0 \arrow[r] & \underbrace{\frac{\sum_{j=1}^{4}\cap_{i\neq j}A_{g_i}}{\cap_{i=1}^{4} A_{g_i}}}_{\mathrm{dark gray}}\rtimes G \arrow[r] & \frac{A}{\cap_{i=1}^{4} A_{g_i}}\rtimes G \arrow[r] & \frac{A}{\sum_{j=1}^{4}\cap_{i\neq j}A_{g_i}}\rtimes G \arrow[r] & 0
\end{tikzcd}
\end{document}