Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lintangwisesa/latex-in-markdown
LaTeX ∫Ω∇u⋅∇v dx=∫Ωfv dx inside Markdown cell at JupyterLab
https://github.com/lintangwisesa/latex-in-markdown
formula jupyter-notebook jupyterlab latex markdown mathematics
Last synced: 4 days ago
JSON representation
LaTeX ∫Ω∇u⋅∇v dx=∫Ωfv dx inside Markdown cell at JupyterLab
- Host: GitHub
- URL: https://github.com/lintangwisesa/latex-in-markdown
- Owner: LintangWisesa
- Created: 2020-01-09T10:26:49.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-01-30T03:39:51.000Z (10 months ago)
- Last Synced: 2024-01-30T04:38:34.961Z (10 months ago)
- Topics: formula, jupyter-notebook, jupyterlab, latex, markdown, mathematics
- Language: Jupyter Notebook
- Homepage: https://github.com/LintangWisesa/LaTeX-in-Markdown/blob/master/LatexFormula.ipynb
- Size: 11.7 KB
- Stars: 7
- Watchers: 3
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LaTeX in Markdown
Using LaTeX to write scientific formulas (including symbols, operators & functions) inside Markdown cell at JupyterLab or classics Jupyter Notebook.
[![Video](https://img.youtube.com/vi/dgRdzczeXTA/0.jpg)](https://www.youtube.com/watch?v=dgRdzczeXTA)
__Summary__: [LaTeX in Markdown](https://github.com/LintangWisesa/LaTeX-in-Markdown/blob/master/LatexFormula.ipynb)
__Docs__: [LaTeX introduction](https://en.wikibooks.org/wiki/LaTeX/Mathematics)
### 1. Symbols, Brackets & Delimiters
- ```$\sum$```
$\sum$
- ```$\displaystyle \sum$```
$\displaystyle \sum$
- ```$ + - = ! / ( ) [ ] < > | ' : * $```
$ + - = ! / ( ) [ ] < > | ' : * $
- ```$\forall x \in X, \quad \exists y \leq \epsilon$```
$\forall x \in X, \quad \exists y \leq \epsilon$
- ```$\alpha, \beta, \gamma, \Gamma, \pi, \Pi, \phi, \varphi, \mu, \Phi$```
$\alpha, \beta, \gamma, \Gamma, \pi, \Pi, \phi, \varphi, \mu, \Phi$
- ```$\prod \coprod \bigoplus \bigotimes \bigodot$```$\prod \coprod \bigoplus \bigotimes \bigodot$
- ```$\bigcup \bigcap \biguplus \bigsqcup \bigvee \bigwedge$```
$\bigcup \bigcap \biguplus \bigsqcup \bigvee \bigwedge$
- ```$\int \oint \iint \iiint \iiiint \idotsint$```$\int \oint \iint \iiint \iiiint \idotsint$
- ```$( a ), [ b ], \{ c \}, | d |$```$( a ), [ b ], \{ c \}, | d |$
### 2. Operators
- ```$\cos (2\theta) = \cos^2 \theta - \sin^2 \theta$```
$\cos (2\theta) = \cos^2 \theta - \sin^2 \theta$
- ```$\lim\limits_{x \to \infty} \exp(-x) = 0$```$\lim\limits_{x \to \infty} \exp(-x) = 0$
- ```$a \bmod b$```$a \bmod b$
- ```$x \equiv a \pmod{b}$```$x \equiv a \pmod{b}$
### 3. Powers and indices
- ```$n^{22}$```
$n^{22}$
- ```$k_{n+1} = n^2 + k_n^2 - k_{n-1}$```$k_{n+1} = n^2 + k_n^2 - k_{n-1}$
- ```$f(n) = n^5 + 4n^2 + 2 |_{n=17}$```$f(n) = n^5 + 4n^2 + 2 |_{n=17}$
### 4. Fractions and Binomials
- ```$\frac{n!}{k!(n-k)!} = \binom{n}{k}$```
$\frac{n!}{k!(n-k)!} = \binom{n}{k}$
- ```$\frac{\frac{1}{x}+\frac{1}{y}}{y-z}$```$\frac{\frac{1}{x}+\frac{1}{y}}{y-z}$
- ```$^3/_7$```$^3/_7$
### 5. Roots
- ```$\sqrt{\frac{a}{b}}$```
$\sqrt{\frac{a}{b}}$
- ```$\sqrt[n]{1+x+x^2+x^3+\dots+x^n}$```$\sqrt[n]{1+x+x^2+x^3+\dots+x^n}$
### 6. Sums and integrals
- ```$\sum_{i=1}^{10} t_i$```
$\sum_{i=1}^{10} t_i$
- ```$\displaystyle\sum_{i=1}^{10} t_i$```$\displaystyle\sum_{i=1}^{10} t_i$
- ```$\int_0^\infty \mathrm{e}^{-x}\,\mathrm{d}x$```
$\int_0^\infty \mathrm{e}^{-x}\,\mathrm{d}x$
- ```$\int\limits_a^b$```$\int\limits_a^b$
### 7. Matrices and arrays
- ```$\begin{matrix}a & b & c \\d & e & f \\g & h & i\end{matrix}$```
$\begin{matrix}a & b & c \\d & e & f \\g & h & i\end{matrix}$
#### 🍔 Lintang Wisesa