如何垂直对齐分数和答题纸

如何垂直对齐分数和答题纸

我正在尝试排版一张工作表,学生可以在空白处填写内容。在下面的例子中,他们将填写每个分数的乘积,以得到一个公分母。但是,空白与分数的底部不对齐;它们太高了。我怎样才能将分数向上移动(或调整它们的大小)或将空白向下移动以使它们对齐?

\documentclass[12pt]{article}
\usepackage{amsmath}

\begin{document}

$$\frac{1}{8}\cdot\underline{\hspace{1.5cm}}=\underline{\hspace{1.5cm}}
\hspace{1cm} 
\frac{7}{12}\cdot\underline{\hspace{1.5cm}}=\underline{\hspace{1.5cm}}$$

\end{document}

答案1

您可以使用普通\frac命令并使用该\phantom方法(或使用在数学模式下工作的另一个空格)。\phantom占用其参数本来要使用的空间。

\documentclass[12pt]{article}
\usepackage{amsmath}

\begin{document}

\section*{Code Provided by OP}

\begin{equation}
\frac{1}{8}\cdot\underline{\hspace{1.5cm}}=\underline{\hspace{1.5cm}}
\hspace{1cm} 
\frac{7}{12}\cdot\underline{\hspace{1.5cm}}=\underline{\hspace{1.5cm}}
\end{equation}

\section*{Code Proposes by Manuel Kuehner}

\begin{equation}
\frac{1}{8} \cdot \frac{\phantom{123456}}{\phantom{123456}} =\frac{\phantom{123456}}{\phantom{123456}}
\hspace{1cm} 
\frac{7}{12} \cdot \frac{\phantom{123456}}{\phantom{123456}} =\frac{\phantom{123456}}{\phantom{123456}}
\end{equation}

\end{document}

在此处输入图片描述

答案2

你可以使用这个代码:

\documentclass{article}
\usepackage{amsmath}
\newcommand{\tobecompleted}{\genfrac{}{}{0pt}{}{}{\underline{\hspace{1.5cm}}}}
\let\tbc\tobecompleted
\begin{document}

\[ \frac{1}{8} · \tbc = \tbc
  \hspace{1cm}
  \frac{7}{12} · \tbc = \tbc \]

\end{document} 

在此处输入图片描述

相关内容