| Markdown | Preview |
|---|---|
**bold text** |
bold text |
*italicized text* or _italicized text_ |
italicized text |
`Monospace` |
Monospace |
~~strikethrough~~ |
|
[A link](https://www.google.com) |
A link |
 |
![]() |
Headings are rendered as titles.
# Section 1
# Section 2
## Sub-section under Section 2
### Sub-section under the sub-section under Section 2
# Section 3The table of contents, available on the left side of Colab, is populated using at most one section title from each text cell.
>One level of indentationOne level of indentation
>>Two levels of indentationTwo levels of indentation
Code blocks
```python
print("a")
```
print("a")Ordered lists:
1. One
1. Two
1. Three- One
- Two
- Three
Unordered lists:
* One
* Two
* Three- One
- Two
- Three
Equations:
$y=x^2$
$e^{i\pi} + 1 = 0$
$e^x=\sum_{i=0}^\infty \frac{1}{i!}x^i$
$\frac{n!}{k!(n-k)!} = {n \choose k}$
$A_{m,n} =
\begin{pmatrix}
a_{1,1} & a_{1,2} & \cdots & a_{1,n} \\
a_{2,1} & a_{2,2} & \cdots & a_{2,n} \\
\vdots & \vdots & \ddots & \vdots \\
a_{m,1} & a_{m,2} & \cdots & a_{m,n}
\end{pmatrix}$$A_{m,n} = \begin{pmatrix} a_{1,1} & a_{1,2} & \cdots & a_{1,n} \ a_{2,1} & a_{2,2} & \cdots & a_{2,n} \ \vdots & \vdots & \ddots & \vdots \ a_{m,1} & a_{m,2} & \cdots & a_{m,n} \end{pmatrix}$
Tables:
First column name | Second column name
-------------------|------------------
Row 1, Col 1 | Row 1, Col 2
Row 2, Col 1 | Row 2, Col 2
| First column name | Second column name |
|---|---|
| Row 1, Col 1 | Row 1, Col 2 |
| Row 2, Col 1 | Row 2, Col 2 |
Horizontal rules:
---