XY-pic 出现“尺寸太大”错误

XY-pic 出现“尺寸太大”错误

下面的说法有什么问题?

\documentclass{amsart}
\usepackage[all]{xy}
\begin{document}
\xymatrix{
        \text{Long string of text that causes an error during the compilation of this document} \\
        X
}
\end{document}

奇怪的是,如果没有第二行,它可以编译得很好。

答案1

这似乎是 的缺陷,这个问题涉及简单但较宽的矩阵单元。作为一种解决方法,如果矩阵的其他部分不受影响,xypic您可以减小所见的宽度,例如:xy\makebox

\xymatrix{
        \makebox[.8\textwidth][l]{Long string of  that causes an error during the 
                                  compilation of this document}\\% not any more
        X
}

相关内容