mathsoftware

A course about LaTeX and SageMath
git clone https://git.tronto.net/mathsoftware
Download | Log | Files | Refs | README | LICENSE

2-LatexFundamentals.vrb (624B)


      1 \frametitle{Math mode - align and equation}
      2 \begin{center}
      3     For formulas spanning multiple lines you can use:
      4     \begin{columns}
      5       \column{0.5\textwidth}
      6         \texttt{\bs begin\{align\}(...)\bs end \{align\}}
      7         \begin{align}
      8           \sum_{n=1}^\infty n =& 1+2+3+4+5+\cdots=\\
      9                               =& -\frac12
     10         \end{align}
     11       \column{0.5\textwidth}
     12         \texttt{\bs begin\{equation\}(...)\bs end \{equation\}}
     13         \begin{equation}
     14           \sum_{n=1}^\infty n = 1+2+3+4+5+\cdots=\\
     15                               = -\frac12
     16         \end{equation}
     17     \end{columns}
     18   \end{center}