[Tex/LaTex] How to remove default line spacing

line-spacing

I have a weird problem with my latex system. I compiled my latex code with the following document definition

\documentclass[a4paper, 10pt]{article}

But the result is too much white space between two consecutive lines. What else should I do to get no spacing?

Best Answer

As pointed out by Werner that should not be the case. So, without a small example MWE that illustrates the specific issue, it is hard to know what the exact problem is. One possibility is that you are concerned about the spacing between consecutive display math environments as in:

\documentclass[a4paper,10pt]{article}
\begin{document}
\[x=y\]
\[z=y\]
\[u=x\]
\end{document}​

If so, then you should restructure to not use consecutive display math environments. See Uneven vertical spacing displaymath for a discussion on why.