第一次在这里发帖。
我目前被一件事难住了。
我想创建这个
我启动了 LaTeX 代码(但我不知道如何让所有内容保持在同一行并在中间有一个箭头)。
这是我的代码:
\documentclass[fleqn]{article}
\usepackage{bookman}
\usepackage{amsmath}
\usepackage{fullpage}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage [margin=1in] {geometry}
\parindent 0px %no indention
\begin{document}
\begin{tabular}{ccc}
& 4 & 3 \\
- & 1 & 5 \\
\hline
& & \\
\end{tabular} \\
\vspace{0.5 cm}
\begin{tabular}{ccc}
& 3 & 13 \\
- & 1 & 5 \\
\hline
& 2 & 8 \\
\end{tabular} \\
\end{document}
所以它看起来像这样:
任何帮助,将不胜感激
答案1
一些选项。可以通过调整的参数来控制箭头的长度\hspace*
。
\documentclass[fleqn]{article}
%\usepackage{bookman} % not needed here
\usepackage{amsmath}
%\usepackage{fullpage} % not needed here
%\usepackage{graphicx} % not needed here
%\usepackage{amsmath} % loaded twice
\usepackage[margin=1in] {geometry}
\parindent 0px %no indention
\begin{document}
\[\vcenter{\hbox{\begin{tabular}{ccc}
& 4 & 3 \\
& 1 & 5 \\
\hline
& & \\
\end{tabular}}}
\xrightarrow{\hspace*{3em}}
\vcenter{\hbox{\begin{tabular}{ccc}
& 3 & 13 \\
& 1 & 5 \\
\hline
& 2 & 8 \\
\end{tabular}}}\]
or
\[\begin{tabular}[m]{ccc}
& 4 & 3 \\
& 1 & 5 \\
\hline
& & \\
\end{tabular}
\xrightarrow{\hspace*{3em}}
\begin{tabular}[m]{ccc}
& 3 & 13 \\
& 1 & 5 \\
\hline
& 2 & 8 \\
\end{tabular}
\]
or
$\vcenter{\hbox{\begin{tabular}{ccc}
& 4 & 3 \\
& 1 & 5 \\
\hline
& & \\
\end{tabular}}}
\xrightarrow{\hspace*{3em}}
\vcenter{\hbox{\begin{tabular}{ccc}
& 3 & 13 \\
& 1 & 5 \\
\hline
& 2 & 8 \\
\end{tabular}}}$
or
$\begin{tabular}[m]{ccc}
& 4 & 3 \\
& 1 & 5 \\
\hline
& & \\
\end{tabular}
\xrightarrow{\hspace*{3em}}
\begin{tabular}[m]{ccc}
& 3 & 13 \\
& 1 & 5 \\
\hline
& 2 & 8 \\
\end{tabular}
$
\end{document}