等式和上方线条之间的额外空格

等式和上方线条之间的额外空格

第一行和最后一行与公式之间的距离有何不同。如何删除多余的空格。

在此处输入图片描述

我正在使用此代码

 According to given assumption that n is a power of 2 or $n=2^k$
    \begin{center}
    \begin{equation} \label{eq:solve}
     2T(n/2) + 1     
    \end{equation}
    \end{center} 

平均能量损失

\documentclass{article}

\usepackage{fancyhdr} % Required for custom headers
\usepackage{lastpage} % Required to determine the last page for the footer
\usepackage{extramarks} % Required for headers and footers
\usepackage[usenames,dvipsnames]{color} % Required for custom colors
\usepackage{graphicx} % Required to insert images
\usepackage{listings} % Required for insertion of code
\usepackage{courier} % Required for the courier font
\usepackage{lipsum} % Used for inserting dummy 'Lorem ipsum' text into the template
\usepackage{mathtools}          %loads amsmath as well
\DeclarePairedDelimiter\Floor\lfloor\rfloor
\DeclarePairedDelimiter\Ceil\lceil\rceil

% Margins
\topmargin=-0.45in
\evensidemargin=0in
\oddsidemargin=0in
\textwidth=6.5in
\textheight=9.0in
\headsep=0.25in

\linespread{1.1} % Line spacing
\begin{document}
\begin{section}
According to given assumption that n is a power of 2 or $n=2^k$

\section{equation} 
 2T(n/2) + 1     
\end{equation}

Using Master Theorem where a=2, b=2, d=0;


\end{document}

答案1

首先,您的 MWE 不起作用,因为您写了\section{equation}... \end{equation}。Latex 无法识别这些要配对的标签,因此请将第一个更改为\begin{equation}

删除\begin{section}\end{section}标签,它们没有任何用处。如果您想在文档中开始一章(针对班级article),请写入\section{Title here}

正如评论中向您建议的那样,留下一个空白行会产生更宽的垂直空间。因此对于以下代码:

According to given assumption that $n$ is a power of $2$ or $n=2^k$

\begin{equation} 
 2T(n/2) + 1     
\end{equation}

According to given assumption that $n$ is a power of $2$ or $n=2^k$
\begin{equation} 
 2T(n/2) + 1     
\end{equation}

您得到了这个结果。第一个例子比第二个例子显示出更大的距离(虽然不是很明显,但仍然存在)。

在此处输入图片描述

你的方程已经居中了,所以你不需要center,这就是导致您的情况出现巨大空间的原因。此外,它无论如何都是用于文本,而不是数学,因此您没有理由在这种情况下使用它。对于居中多种的方程,请参阅这个问题:如何使方程式居中?

相关内容