Page LayoutToo much space left column

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
Imanengineer
Posts: 2
Joined: Sat Nov 07, 2009 4:46 pm

Too much space left column

Post by Imanengineer »

Hey there,

I was making a Latex file for someone with some mathematical equations on it. I figured it'd look better if I aligned the equations at the '='-sign. However, when I had done that, the most left column had got an extra space on top. I have tried seemingly everything but I just cannot get rid of it!

The .tex file is attached to this post.

Any help is appreciated!

David
Attachments
test.tex
(1.32 KiB) Downloaded 140 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Too much space left column

Post by gmedina »

Hi,

I would suggest you to use the flalign* environment provided by the amsmath package. Take a look at the following example:

Code: Select all

\documentclass[a4paper, fleqn]{article}
\usepackage{amsmath}

\begin{document}

\section{Test}
\begin{flalign*}
  1x+1x=&& 3x+9x=&&6x-9x=\\
  y+y=&& 6y+100y=&&7q-3q=
\end{flalign*}

\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Imanengineer
Posts: 2
Joined: Sat Nov 07, 2009 4:46 pm

Re: Too much space left column

Post by Imanengineer »

Thanks a lot for the quick response! It looks exactly the way I want it to.
Post Reply