Advertisement
epsilon413

Latex-Question3

Apr 19th, 2024
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 1.36 KB | Source Code | 0 0
  1. \documentclass{article}
  2. \usepackage{amsmath}
  3. \usepackage{authblk}
  4. % \usepackage{esint}
  5. \title{Equations}
  6.  
  7. \author[1]{Rakshit Rabugotra}
  8. \author[2]{Prof. Naveen Kumar}
  9. \author[3]{Dr. Neeraj Kumar Sharma}
  10. \affil[1]{Department of Computer Science, University of Delhi}
  11. \affil[2]{Ram Lal Anand College, University of Delhi}
  12. \affil[3]{SGTB Khalse College, University of Delhi}
  13.  
  14. \begin{document}
  15. \maketitle
  16.  
  17.  
  18. \section{Maxwell's equations}
  19. "Maxwell's equations" are named for James Clark Maxwell and are as follow:
  20. \begin{align}
  21. &\Vec{\nabla}\cdot\Vec{E}=\frac{\rho}{\epsilon_0} && \text{Gauss's Law}\\
  22. &\Vec{\nabla}\cdot\Vec{B} = 0 && \text{Gauss's Law for Magnetism} \\
  23. &\Vec{\nabla} \times \Vec{E} = -\frac{\partial{\Vec{B}}}{\partial{t}} && \text{Faraday's Law of Induction} \\
  24. &\Vec{\nabla} \times \Vec{B} = \mu_0(\epsilon_o\frac{\partial{\Vec{E}}}{\partial{t}} + \Vec{J}) && \text{Ampere's Circuital Law} \\
  25. \end{align}
  26.  
  27. equations 1, 2, 3, and 4 are some of the most important in Physics.
  28.  
  29. \section{Matrix Equations}
  30.  
  31. \begin{align}
  32. \begin{pmatrix}
  33. a_{11} & a_{12} & \dots & a_{1n} \\
  34. a_{21} & a_{22} & \dots & a_{2n} \\
  35. \vdots & \vdots & \ddots & \vdots \\
  36. a_{n1} & a_{n2} & \dots & a_{nn}
  37. \end{pmatrix}
  38. \begin{bmatrix}
  39. v_1 \\
  40. v_2 \\
  41. \vdots \\
  42. v_n
  43. \end{bmatrix}
  44. =
  45. \begin{matrix}
  46. w_1 \\
  47. w_2 \\
  48. \vdots \\
  49. w_n
  50. \end{matrix}
  51. \end{align}
  52. \end{document}
Tags: LaTeX
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement