New lines in displaymath LaTeX

16,852

Solution 1

Since displaymath is not numbered perhaps you prefer the align* environment instead of align. Note, usually the & symbol is used before a relation symbol for the alignment.

For more information look at one of the documents listed here: Mathematics with LaTeX.

Stefan

Solution 2

Use the align environment from the amsmath package:

\begin{align}
 \pi_D^B(r) = &\{z^{(|D|+1)}|\exists x \in r(z[D]=x[D])\wedge \\
              &\forall y \in r (y[D]=z[D]\Rightarrow y[T]\subseteq z[T])\wedge \\
              &\forall y \in z[T \exists y \in r (y[D]=z[D]\wedge t \in  y[T])\}
\end{align}
Share:
16,852
mjsr
Author by

mjsr

Computer Science Engineer that loves programming!!

Updated on August 02, 2022

Comments

  • mjsr
    mjsr almost 2 years

    I need to write the next formula in LaTeX, but I can't put it in multiple lines and with the right indentation for the subsequent lines, this is my code.

    \begin{displaymath}
    \pi_D^B(r) = \{z^{(|D|+1)}|\exists x \in r(z[D]=x[D])\wedge \\
                 \forall y \in r (y[D]=z[D]\Rightarrow y[T]\subseteq z[T])\wedge \\
                 \forall y \in z[T \exists y \in r (y[D]=z[D]\wedge t \in  y[T])\}
    \end{displaymath}