我陷入了两件事:
我怎样才能使括号精确地适合内容。我使用了
\left(
和\right)
,但它们似乎比其中的内容大。我尽力让
(m)\gamma
框内的条目看起来更小,但做不到。有人能帮我吗?我该怎么办?
\[
\ytableausetup
{mathmode}
M=\scriptstyle\left(\resizebox{.11\hsize}{!}{\begin{ytableau} {\scriptsize}
& \none[\dots]
&\scriptstyle (m)\gamma &\\
&\none[\dots] &\\
\none[\vdots]\\
\\
\end{ytableau}}\scriptstyle\right)\]
答案1
使用centertableaux
选项使年轻图垂直居中。然后发现括号有点太小,但可以使用以下方法纠正\delimitershortfall
:
\documentclass{article}
\usepackage{ytableau,graphicx}
\begin{document}
\begin{displaymath}
\ytableausetup{mathmode,boxsize=2em,centertableaux}
\setlength{\delimitershortfall}{-5pt}
M=\left(
\begin{ytableau}{\scriptstyle}
&\none[\dots]&\scriptstyle (m)\gamma &\\
&\none[\dots]&\\
\none[\vdots]\\
\\
\end{ytableau}\right)
\end{displaymath}
\end{document}