乳胶:等式中的缩进(方框而不是数字)

latex: indents in the equation (boxes instead of digit)

我要完成任务 - 添加未知数字的列。

如何使所有内容都在方框和数字的中心对齐?

要数字在数字下,方框在数字下,数字在方框下?

\def\msquare{\mathord{\scalerel*{\Box}{gX}}}


\begin{multline*}
\begin{array}{r}
+
\begin{array}{r}
\msquare64\msquare\msquare\msquare\
661977\
\end{array}\
\hline
\begin{array}{r}
1\msquare\msquare631\msquare
\end{array}\
\end{array}
\end{multline*}

这可以用数组来完成。由于您的值只是正方形或数字,因此最好使用可以更精细地控制列间距的表格环境。要做到这一点,更简单的是重新定义 tabcolsep 长度,但是像数组这样的包可以提供其他方法来控制它。

\documentclass{article}
\usepackage{amsmath}
\usepackage{array}

\begin{document}
% \def\msquare{\mathord{\scalerel*{\Box}{gX}}} % redifined, because I do know what \Box does.
\def\msquare{\raisebox{1mm}{\framebox[2mm][r]{}}}


\setlength{\tabcolsep}{0.5pt}
\begin{multline*}
  \begin{array}{r}
    +
    \begin{tabular}{ccccccc}
      &\msquare&6&4&\msquare&\msquare&\msquare\
      &6&6&1&9&7&7\
      \hline
      1&\msquare&\msquare&6&3&1&\msquare
    \end{tabular}\
  \end{array}
\end{multline*}
\end{document}

为避免在您的所有文档中重新定义 tabcolsep,请将此代码括在大括号中。