epsilon413

Latex-Question2

Apr 19th, 2024
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 0.85 KB | Source Code | 0 0
  1. \documentclass[]{article}
  2. \title{Integrals, Sums and Limits}
  3. \usepackage{esint}
  4. \usepackage{amsmath}
  5. \date{}
  6. \author{Rakshit Rabugotra}
  7. \begin{document}
  8. \maketitle
  9. \section{Integrals}
  10. Integral \(\int_{a}^{b} x^2 \,dx\) inside text. ~\\
  11. The same integral on display:
  12. \[int_{a}^{b} x^2 \,dx\]
  13. and multiple integrals:
  14. \begin{gather*}
  15.    \iint_V \mu(u, v) \,du\,dv
  16.    \\
  17.    \iiint_V \mu(u, v, w) \,du\,dv\,dw
  18.    \\
  19.    \oint_V f(s) \,ds
  20. \end{gather*}
  21.  
  22.  
  23. \section{Sums and products}
  24. Sum \(\sum_{n=1}^{\infty} 2^{-n} = 1\) inside text.~\\
  25. The same sum on display:
  26. \[\sum_{n=1}^{\infty} 2^{-n} = 1\]
  27.  
  28. Product \(\prod_{i=a}^{b} f(i)\) inside text.
  29. The same product on display:
  30. \[\prod_{i=a}^{b} f(i)\]
  31.  
  32. \section{Limits}
  33. Limit \(\lim_{x\to\infty} f(x)\) inside text.~\\
  34. The same limit on display:
  35. \[\lim_{x\to\infty} f(x)\]
  36.  
  37. \end{document}
Tags: LaTeX
Add Comment
Please, Sign In to add comment