mathsoftware

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

1-Introduction.vrb (413B)


      1 \frametitle{Latex - Example}
      2 An equation like this:
      3   \begin{align*}
      4     e^x =& \sum_{n=0}^{\infty} \frac{x^n}{n!} \\
      5         =& 1 + x + \frac{x^2}{2} + \frac{x^3}{6} + \cdots
      6   \end{align*}
      7   is written in LaTeX as:
      8   \begin{verbatim}
      9     \begin{align*}
     10       e^x =& \sum_{n=0}^{\infty} \frac{x^n}{n!} \\
     11           =& 1 + x + \frac{x^2}{2} +
     12              \frac{x^3}{6} + \cdots
     13     \end{align*}
     14   \end{verbatim}