Young 画面之间的箭头

Young 画面之间的箭头

我正在处理一些类似 tableaux 的对象(标准和半标准 Young tableaux),并想说明这些对象上的某些映射。我想通过在不同的 tableaux 之间绘制箭头来实现这一点,但似乎无法弄清楚如何使箭头看起来不错。箭头始终向上对齐,我希望能够垂直调整它们,以便它们从 tableaux 的中间开始。

\documentclass{article}
\usepackage{amsmath}
\usepackage{ytableau}
\begin{document}
\begin{equation*}
    \ytableaushort{1235,235,34,45,5} \longrightarrow \ytableaushort{1124,2335,44,5} \longrightarrow \ytableaushort{1125,344,45} \longrightarrow
    \ytableaushort{11}
\end{equation*}
\end{document}

编辑:从对齐更改为方程。

答案1

这适合你吗?

\documentclass{article}
\usepackage{amsmath}
\usepackage{ytableau}

\begin{document}

\ytableausetup{aligntableaux =top, nobaseline}
\begin{equation*}
    \ytableaushort{1235,235,34,45, 5 } \raisebox{1.1ex}{${}\longrightarrow{}$} \ytableaushort{1124,2335,44,5} \raisebox{1.1ex}{${}\longrightarrow{}$}\ytableaushort{1125,344,45} \raisebox{1.1ex}{${}\longrightarrow{}$}
    \ytableaushort{11}
\end{equation*}

\end{document} 

在此处输入图片描述

相关内容