i was wondering if its possible to do the following in a better way:
Code: Select all
\documentclass[a4paper,10pt]{article}
\usepackage[utf8x]{inputenc}
\usepackage{amsmath}
\begin{document}
\begin{align*}
a&=b &\Rightarrow &\text{ some fancy text} \\
c&=d &\Rightarrow &\text{ some fancy, much longer explanation which} \\
& & &\text{ does not fit into one line but should} \\
& & &\text{ be aligned to the rest of the text}
\end{align*}
\end{document}
Code: Select all
a = b => some fancy text
c = d => some fancy, much longer explanation which
does not fit into one line but should
be aligned to the rest of the text
Thanks in advance,
Max