Here's a sentence with a footnote.[^1]
[^1]: This is the footnote content.
Here's a sentence with a footnote.[^1]
[^1]: This is the footnote content.
내가 밥을 먹었는데 치킨이 먹고싶더라. [^2]
[^2]: 나의 감정을 표현한 글
Quotes and Callouts
Blockquote
> This is a blockquote.
> It can span multiple lines.
This is a blockquote. It can span multiple lines.
밥을 많이 먹으면 살이 찌더라. —구요한
Nested Blockquotes
> This is the first level of quoting.
>
> > This is nested blockquote.
>
> Back to the first level.
This is the first level of quoting.
This is nested blockquote.
Back to the first level.
Images

![[Pasted image 20240627022953.png|400]]
Tables
| Column 1 | Column 2 | Column 3 |
|----------|----------|----------|
| Row 1, Col 1 | Row 1, Col 2 | Row 1, Col 3 |
| Row 2, Col 1 | Row 2, Col 2 | Row 2, Col 3 |
A
B
1
2
Column 1
Column 2
Column 3
Row 1, Col 1
Row 1, Col 2
Row 1, Col 3
Row 2, Col 1
Row 2, Col 2
Row 2, Col 3
Horizontal Rule
---
Mathematical Equations (LaTeX)
Many Markdown processors support LaTeX for mathematical equations.
Inline Math
This is an inline equation: $E = mc^2$
This is an inline equation: $E = mc^2$
Display Math
This is a display equation:
$$
\frac{\partial f}{\partial x} = 2\sqrt{a}x
$$
This is a display equation:
$$ \frac{\partial f}{\partial x} = 2\sqrt{a}x $$
근의공식: $$ x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} $$
Citations (for academic writing)
Some Markdown flavors (like Pandoc) support citations:
According to recent studies [@smith2023; @johnson2022], ...
Abbreviations
The HTML specification is maintained by the W3C.
*[HTML]: Hyper Text Markup Language
*[W3C]: World Wide Web Consortium
The HTML specification is maintained by the W3C.
*[HTML]: Hyper Text Markup Language *[W3C]: World Wide Web Consortium
Highlighting (supported in some flavors)
Here's some ==highlighted text==.
Here's some ==highlighted text==.
Remember that support for some of these features (especially LaTeX equations, citations, and certain extensions) may vary depending on the Markdown processor or platform you're using. Always check your specific environment's capabilities and syntax requirements.