更改特定部分的段落间距

更改特定部分的段落间距

我正在处理exercise一些问题(当我有大型方程式时),我希望使用不同的段落间距。有办法吗?这就是我所拥有的:

\documentclass[14pt]{extarticle}
\usepackage[margin=1.in]{geometry}
\usepackage{amsmath, exercise, multicol}

\renewcommand{\baselinestretch}{1.25} 

\begin{document}

\parskip=12pt

\begin{Exercise}[label=Ex1]
\Question {Here the spacing is normal}
    \subQuestion {$ x^2 + x $}
    \subQuestion {$ 2x + a $}

\Question {Here I want more space between paragraphs}
\parskip=24pt # This has no effect
    \Question {$ \dfrac{x^2 - 2}{x^2 + x + 1} $}
    \Question {$ \dfrac{2x^2 + 2x + 1}{x^2 + x + 2} $

\end{Exercise}

\end{document}

答案1

我通常使用

\vspace{2in}

留出空白空间以回答问题。

相关内容