| 12345678910111213141516171819202122232425 | 
							- %% Gleichungssystem mit zwei Zeilen und vier Einträgen (je zwei links
 - %% bzw. rechts).
 - \def\gleichungZZ#1#2#3#4{%%
 -   $$\left|
 -   \begin{array}{rcl}
 -     {#1} &=& {#2}\\
 -     {#3} &=& {#4}
 -     \end{array}\right|$$}%%
 - 
 - \def\gleichungDD#1#2#3#4#5#6{%%
 -   $$\left|
 -   \begin{array}{rcl}
 -     {#1} &=& {#2}\\
 -     {#3} &=& {#4}\\
 -     {#5} &=& {#6}\\
 -     \end{array}\right|$$}%%
 - 
 - \def\gleichungsSystemNummeriert#1#2#3#4{
 - \begin{center}%%
 - \begin{tabular}{|ccr|c}
 - $#1$ & $=$ & $#2$ & \TRAINER{(I)}\\
 - $#3$ & $=$ & $#4$ & \TRAINER{(II)}
 - \end{tabular}%%
 - \end{center}
 - }%% end gleichungsSystem
 
 
  |