Page Layout ⇒ Too much space left column
-
- Posts: 2
- Joined: Sat Nov 07, 2009 4:46 pm
Too much space left column
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 143 times
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Too much space left column
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}
-
- Posts: 2
- Joined: Sat Nov 07, 2009 4:46 pm