在列举一些方程式并使用newtxmath
包中,枚举项之前会出现额外的垂直空间,如下所示:
\documentclass[fleqn]{article}
\usepackage[papersize={6cm,6cm}]{geometry}
\usepackage{newtxtext}
\usepackage{newtxmath}
\begin{document}
Evaluate the following mathematical expressions in Scilab:
\begin{enumerate}
\item \[ \frac{4}{3}\pi \sin{x^2 - 1} \]
\item \[ \frac{x^2 y^3}{(x - y)^2} \]
\end{enumerate}
\end{document}
如果没有该newtxmath
包,则输出为:
newtxmath
使用时如何抑制这个额外的垂直空间?
答案1
newtxmath
加载amsmath
,并且是\[
给出换行符的 AMS 定义。
\[
是一种显示设置,因此换行符实际上是预期的布局(即使您在标准fleqn
实现中默认没有获得它。
对于你想要的布局,更自然的标记是
\item $\displaystyle ..... $