Mehrzeilige Formeln und Ausrichtung

Formelsatz für Mathematik, Naturwissenschaften und Technik


Avernus
Forum-Anfänger
Forum-Anfänger
Beiträge: 15
Registriert: Fr 24. Mai 2013, 19:04

Mehrzeilige Formeln und Ausrichtung

Beitrag von Avernus »

Hallo
ich habe eine Formel, welche über mehrere Zeilen geht.

Matrix mal Vektor + Summe Matrix mal Vektor + Summe Matrix mal Vektor=Vektor

Ich breche die Zeile Momentan in der equation und dor in der Splitumgebung um. Das funktioniert, sieht aber nicht ganz so dicke aus. Ich hätte gerne das +Summe Matrix mal Vektor jeweils untereinander stehen. Also so das genau die + Zeichen untereinander sind.

Hat jemand einen Vorschlag wie man das macht?

Vielen Dank[/b]

esdd
Forum-Meister
Forum-Meister
Beiträge: 2561
Registriert: So 7. Feb 2010, 16:36

Beitrag von esdd »

Bitte mache ein entsprechendes Minimalbeispiel.

Avernus
Forum-Anfänger
Forum-Anfänger
Beiträge: 15
Registriert: Fr 24. Mai 2013, 19:04

Beitrag von Avernus »

In Ordnung... hier ist das Beispiel aus meinem Code.
\begin{equation}  \begin{split} 
\begin{pmatrix}
a_P^{uu} & 0 & a_P^{up} \\
0 & a_P^{vv} & a_P^{vp} \\
a_P^{pu} & a_P^{pv} & a_P^{pp} 
\end{pmatrix} \cdot  \begin{pmatrix}
	u_P \\
	v_P \\
	p_P
\end{pmatrix} + 
\sum_{F=N(P),S(P)} \begin{pmatrix}
a_F^{uu} & 0 & 0\\
0 & a_F^{vv} & a_F^{vp} \\
0 & a_F^{pv} & a_F^{pp} 
\end{pmatrix} \cdot  \begin{pmatrix}
	u_F \\
	v_F \\
	p_F
\end{pmatrix} 
\\
+ \sum_{F=O(P),W(P)} \begin{pmatrix}
a_F^{uu} & 0 & a_F^{up} \\
0 & a_F^{vv} & 0 \\
a_F^{pu} & 0 & a_F^{pp} 
\end{pmatrix} \cdot  \begin{pmatrix}
	u_F \\
	v_F \\
	p_F
\end{pmatrix}=\begin{pmatrix}
	b_P^u \\
	b_P^v \\
	b_P^p
\end{pmatrix}
\end{split} 
\end{equation}

esdd
Forum-Meister
Forum-Meister
Beiträge: 2561
Registriert: So 7. Feb 2010, 16:36

Beitrag von esdd »

Setze vor die Stellen, die aneinander ausgerichtet werden sollen, ein &:
\documentclass{scrartcl}
\usepackage{amsmath}
\begin{document}
\begin{equation}  \begin{split} 
\begin{pmatrix} 
 a_P^{uu} & 0 & a_P^{up} \\ 
 0 & a_P^{vv} & a_P^{vp} \\ 
 a_P^{pu} & a_P^{pv} & a_P^{pp} 
\end{pmatrix} \cdot  \begin{pmatrix} 
    u_P \\ 
    v_P \\ 
    p_P 
\end{pmatrix} &+ 
\sum_{F=N(P),S(P)} \begin{pmatrix} 
 a_F^{uu} & 0 & 0\\ 
 0 & a_F^{vv} & a_F^{vp} \\ 
 0 & a_F^{pv} & a_F^{pp} 
\end{pmatrix} \cdot  \begin{pmatrix} 
    u_F \\ 
    v_F \\ 
    p_F 
\end{pmatrix} 
\\ 
 &+ \sum_{F=O(P),W(P)} \begin{pmatrix} 
 a_F^{uu} & 0 & a_F^{up} \\ 
 0 & a_F^{vv} & 0 \\ 
 a_F^{pu} & 0 & a_F^{pp} 
\end{pmatrix} \cdot  \begin{pmatrix} 
    u_F \\ 
    v_F \\ 
    p_F 
\end{pmatrix}=\begin{pmatrix} 
    b_P^u \\ 
    b_P^v \\ 
    b_P^p 
\end{pmatrix} 
\end{split} 
\end{equation}
\end{document}
Gruß
Elke
Zuletzt geändert von esdd am Mo 23. Sep 2013, 14:00, insgesamt 1-mal geändert.

Avernus
Forum-Anfänger
Forum-Anfänger
Beiträge: 15
Registriert: Fr 24. Mai 2013, 19:04

Beitrag von Avernus »

Danke Elke

Antworten