Re: Allineare equazioni

#82719
admin
Amministratore del forum
    Up
    0
    Down
    ::

    Driven” post=82092Buon giorno dovrei allineare un sistema di equazioni. In linea generale conosco i comandi per farlo ma in questo caso particolare non so come fare.

    Vorrei che sia il gruppo di sinistra che quello di destra fossero allineate a sinistra.

    \begin{equation}
    \begin{aligned}
    & 0 \le T < T_B & S_e(T) = a_g \cdot S \cdot \eta \cdot F_0 \cdot \biggl [ \frac{T}{T_b} +\frac{1}{\eta \cdot F_0} \biggl ( 1- \frac{T}{T_B} \biggr ) \biggr ] \\ & T_B \le T < T_c & S_e(T) = a_g \cdot S \cdot \eta \cdot F_0 \\ & T_C \le T < T_d & S_e(T) = a_g \cdot S \cdot \eta \cdot F_0 \cdot \biggl (\frac{T_C}{T} \biggr ) \\ & T_D \le T & S_e(T) = a_g \cdot S \cdot \eta \cdot F_0 \cdot \biggl (\frac{T_C \cdot T_D}{T^2} \biggr ) \\ \end{aligned} \end{equation} Come potrei fare? Saluti Guido

    Forse è meglio un ambiente [tt]cases[/tt]
    `\documentclass{article}

    \usepackage{amsmath}

    \begin{document}
    \begin{equation}
    S_{e}(T)=
    \begin{cases}
    a_g \cdot S \cdot \eta \cdot F_0 \cdot \biggl[\frac{T}{T_b} +\frac{1}{\eta \cdot F_0} \biggl(1- \frac{T}{T_B} \biggr)\biggr] & 0 \le T < T_B \\ a_g \cdot S \cdot \eta \cdot F_0 & T_B \le T < T_c \\ a_g \cdot S \cdot \eta \cdot F_0 \cdot \biggl (\frac{T_C}{T} \biggr ) & T_C \le T < T_d \\ a_g \cdot S \cdot \eta \cdot F_0 \cdot \biggl (\frac{T_C \cdot T_D}{T^2} \biggr ) & T_D \le T \\ \end{cases} \end{equation} \end{document}`Ciao, Orlando

    Go to top