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