数学练习的排版

数学练习的排版

我正在致力于创建图像/文档,开发旨在向有学习障碍的儿童教授数学运算的视觉材料和文档。

以下是老师给我的手写范例:

500

112500

193000

锻炼

以下是我在 LaTeX 中尝试的操作:

\documentclass{article}

\usepackage{amsmath}  % for '\overset' macro
\usepackage{stix}  % for \lgwhtsquare
\usepackage{icomma} % for comma as decimal separator
\usepackage[output-decimal-marker={,}]{siunitx}

\begin{document}


$500 = 5 \times 10^{\fbox{2}}$
\bigskip

$ 5\overset{\curvearrowright}{0}\overset{\curvearrowright}{0} = 5  \times 10^{2} $
\bigskip

$ 1\overset{\curvearrowright}{1}\overset{\curvearrowright}{2}\overset{\curvearrowright}{5}\overset{\curvearrowright}{0}\overset{\curvearrowright}{0} = 1,125 \times 10^{5} $
\bigskip

$ 193000 = 1,\fbox{9}\fbox{3} \times 10^{\fbox{5}}$
\bigskip



$ \fbox{2}650 = 2,\lgwhtsquare\lgwhtsquare \times 10^{\lgwhtsquare}$
\bigskip

$ 3.857 \times 10^{7} = \lgwhtsquare\lgwhtsquare\lgwhtsquare\lgwhtsquare\lgwhtsquare\lgwhtsquare\lgwhtsquare$
\bigskip

\end{document}

但是我对结果并不满意(数字之间的间距,空框的大小与数字周围的框不一样......):

乳胶输出

有没有更好的方法可以做到这一点?(也许在其他免费软件中?)

相关内容