这个数学表达式的 LaTeX 代码是什么?

这个数学表达式的 LaTeX 代码是什么?

在此处输入图片描述

这张图片的 LaTeX 代码是什么?请帮忙!

答案1

欢迎来到 TeX.SX!这是一个简单的答案,但是,您应该专门检查 TeX.SX 上的加法/乘法/等的命令和包。

\documentclass{article}
\begin{document}
\[
\begin{array}{rr}
       A & B \\
    +\ 3 & 7 \\
    \hline
       9 & A
\end{array}
\]
\end{document}

在此处输入图片描述

答案2

我会做:

\documentclass{article}
\begin{document}
\begin{center}\renewcommand{\tabcolsep}{.3ex}\renewcommand{\arraystretch}{.9}
\begin{tabular}{ccc}&$A$&$B$\\ +&$3$&$7$\\ \hline&$9$&$A$
\end{tabular}\end{center}
\end{document}

答案3

另一种方法是xlop

姆韦

\documentclass[12pt]{article}
\usepackage{xlop}
\begin{document}
\oplput(1,2){A}\oplput(2,2){B}
\oplput(0,1.5){$+$}
\oplput(1,1){3}\oplput(2,1){7}
\ophline(0,0.8){4}
\oplput(1,0){9}\oplput(2,0){A}
\end{document}

为了展示解决方案,你只需要添加一些类似\vspace{1em}\opadd{59}{37}

相关内容