Math & Science ⇒ Left aligned displayed Math Expressions
-
- Posts: 5
- Joined: Wed Jul 20, 2011 7:47 pm
Left aligned displayed Math Expressions
Thanks!
Jon
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
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
Left aligned displayed Math Expressions
welcome to the board!
You could use the document class option fleqn for flush left equations, such as
Code: Select all
\documentclass[fleqn]{book}
Code: Select all
\setlength{\mathindent}{0pt}
Code: Select all
\documentclass{book}
\usepackage{amsmath}
\begin{document}
\begin{flalign*}
ax + by &= c &\\
xy &= ab &
\end{flalign*}
\end{document}
-
- Posts: 5
- Joined: Wed Jul 20, 2011 7:47 pm