这个十字该怎么画?

这个十字该怎么画?

下图是二次多项式因式分解的图,在Latex中怎么画(只画红色矩形框住的部分)?谢谢。

在此处输入图片描述

答案1

以下是一种方法:

在此处输入图片描述

代码:

\documentclass{article}
\usepackage{tikz}

%% https://tex.stackexchange.com/a/100272/4301
\newcommand{\Cross}{%
    \mathbin{%
        \tikz [x=2.0ex,y=2.0ex,line width=.3ex, black] \draw (0,0) -- (1,1) (0,1) -- (1,0);
    }%
}%

\begin{document}
\[
    \begin{array}{r@{}c@{}l}
        2y & & 3          \\
           & {}\Cross{} & \\[-0.75ex]
        3y & & 5          \\
    \end{array}
\]
\end{document}

相关内容