File: math1.tex

package info (click to toggle)
pycode-browser 1%3A1.02%2Bgit20181006-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 6,088 kB
  • sloc: python: 2,779; xml: 152; makefile: 71
file content (13 lines) | stat: -rwxr-xr-x 397 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
\documentclass{article}
\usepackage{amsmath}
\begin{document}
The equation $a^2 + b^2 = c^2$ is typeset as inline. The same can be done in a separate line using
\begin{equation}
  a^2 + b^2 = c^2
\end{equation}
We can also make the equation with a label refer to equation \eqref{mass} to know about the mass energy relation.
\begin{equation}
  E = mc^2 \label{mass}
\end{equation}

\end{document}