Math & Science ⇒ Equations on the left
-
- Posts: 156
- Joined: Sat Jan 22, 2011 9:55 pm
Equations on the left
How can I get the double dollar sign to print the equation to the left, but indented maybe half an inch?
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: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Equations on the left
fleqn
is a LaTeX option.But
$$ ... $$
is low level TeX. This doesn't know LaTeX options and so doesn't respect them. That's a good example, where low level TeX commands are dangerous, and high level LaTeX pendant commands should be used.Here, the LaTeX shortcut for displayed equations is this:
Code: Select all
\[
y = f(x) % sample
\]
fleqn
, with a small indentation, as desired.Stefan