多列中无垂直间距

多列中无垂直间距

我本周才开始使用 LaTeX。所以目前,我正在制作考试类型的文件。我使用该\itemsep=\fill选项来确保每个之间都有垂直空间\item。但是,当我使用该multicol软件包时,它\itemsep=\fill不再起作用。

这是文档。请注意,数字 1 和 2(a) 和 (b) 的间距符合我的要求,而 3(a) - 3(d) 的间距不符合我的要求。 生成的文件

这是我的文档的代码:

\documentclass[11pt,lettersize]{article}
\usepackage[margin=0.75in]{geometry}
\usepackage{multicol}
\usepackage{amsmath}

\begin{document}
\begin{enumerate} \itemsep=\fill

  \item Find all possible values of $x$ in $x^6 - 64 = 0$.

  \item Simplify each.
    \begin{enumerate} \itemsep=\fill
      \item $\dfrac{6b^6 + 4b^4 + 8b^2}{2b^2}$
      \item $\dfrac{2x^3 + 9x^2 - 11x + 3}{2x-1}$ 
      \item $\dfrac{48a^2b^4 + 32ab^5 - 8b^6 + 4ab^2}{-8a^2b^3}$ 
      \item $\dfrac{8c^3+5c^2+2c^4-4c-4}{c^2+4c+3}$
      \vfill
     \end{enumerate}

   \item Perform the indicated operations then simplify.
     \begin{multicols}{2}
     \begin{enumerate} \itemsep=\fill
       \item $(x+1)(x-1)$
       \item $(5x+2)(6x-3)$
       \item $(6x-10)(3x+8)$
       \item $(2x+1)(x-3)$
       \vfill
     \end{enumerate}
     \end{multicols}

\end{enumerate}
\end{document}

您对此有什么建议和/或解决方案吗?这对我很有帮助。谢谢!

答案1

\fill我不会使用和之类的可变长度\vfill,而是使用固定长度,比如说2.5cm

在此处输入图片描述

\documentclass[11pt,letterpaper]{article}
\usepackage[margin=0.75in]{geometry}
\usepackage{multicol}
\usepackage{amsmath}

\begin{document}
\begin{enumerate} \itemsep=2.5cm

  \item Find all possible values of $x$ in $x^6 - 64 = 0$.

  \item Simplify each.
    \begin{enumerate} \itemsep=2.5cm
      \item $\dfrac{6b^6 + 4b^4 + 8b^2}{2b^2}$
      \item $\dfrac{2x^3 + 9x^2 - 11x + 3}{2x-1}$ 
      \item $\dfrac{48a^2b^4 + 32ab^5 - 8b^6 + 4ab^2}{-8a^2b^3}$ 
      \item $\dfrac{8c^3+5c^2+2c^4-4c-4}{c^2+4c+3}$
      %\vfill
     \end{enumerate}

   \item Perform the indicated operations then simplify.
     \begin{multicols}{2}
     \begin{enumerate} \itemsep=2.5cm
       \item $(x+1)(x-1)$
       \item $(5x+2)(6x-3)$
       \item $(6x-10)(3x+8)$
       \item $(2x+1)(x-3)$
       %\vfill
     \end{enumerate}
     \end{multicols}

\end{enumerate}
\end{document}

相关内容