Here is an example:
Code: Select all
\documentclass[10pt]{article}
\usepackage[a4paper,pagesize]{typearea}
\usepackage[english,ngerman]{babel}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage{amsmath}
\usepackage{blindtext}
\usepackage[pdftex]{graphicx}
\usepackage{color}
\begin{document}
\blindtext
\begin{align*}
\pi_{i}(y_{i},y_{-i}) &= (1 - y_{i} - \sum_{j \neq i} y_{j})y_{i}\\
\Longrightarrow \quad \dfrac{\partial\pi_{i}}{\partial y_{i}} & = 1 - 2y_{i} - \sum_{j \neq i} y_{j} = 0 \\
\text{\textcolor{red}{Nash--Gleichgewicht}:}\\
y_{i}^{\ast} &= \dfrac{1}{(n+1)}\\
\Longrightarrow \qquad Y^{\ast} &= \frac{n}{(n+1)}
\end{align*}
\blindtext
\end{document}
1. I want that no empty lines appear between the equations and the two blind texts. I know it doesn't look good, but I need to do this in other situations.
2. I want to align "Nash--Gleichgewicht" to the left. Is there a way to starn an align* environment, than end it and have some normal text and than start the align environment again, but in a way that the equal (=) signs are abouve each other?