I'm currently writing a dissertation using Texmaker and I'm fairly new to it! I have a set of three equations that I want to align so that they all start underneath each other on the left.
I have tried this:
\documentclass[11pt]{article}
\usepackage{amsmath}
\usepackage{graphicx}
\begin{document}
$$\begin{aligned} \rho = \int_{2MG}^r \sqrt{g_{rr}(r')} dr' \\
= \int_{2MG}^{r} (1-\dfrac{2MG}{r'})^{-0.5} dr' \\
= \sqrt{r(r-2MG)}+2MGsinh^{-1} (\sqrt{\dfrac{r}{2MG}-1)}\end{aligned}$$
\end{document}
It doesn't seem to work as I want it!
Can anyone please offer me some words of wisdom?




\documentclass{...}, the required\usepackage's,\begin{document}, and\end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem. Also, see http://tex.stackexchange.com/questions/503/why-is-preferable-to?lq=1 – jub0bs Jan 19 '14 at 11:51