Markup language to take math note.
| operation | description |
|---|---|
| \frac{}{} | fraction |
| \pi | pi |
| < > | greater / lesser |
| \subset | ⊂ |
| \supset | ⊃ |
| \subseteq | ⊆ |
| \supseteq | ⊇ |
| \int | ∫ |
| \oint | ∮ |
| \sum | ∑ |
| \prod | ∏ |
Greek letter: \alpha \beta \gamma \rho \sigma \delta \epsilon
Wrap the formula into $ for a inline formula (fit in the text)
Wrap it in \[ \] to have it with a line break.
$e^{i\pi}+1=0$
\[
e^{i\pi}+1=0
\]
| instead of {c c c} you can replace the c with r or l to right or left aline. Add border like so: { | c | c | c | } |
\begin{center}
\begin{tabular}{c c c}
cell1 & cell2 & cell3 \
cell4 & cell5 & cell6 \
cell7 & cell8 & cell9
\end{tabular}
\end{center}
Auto size bracket: put \left and \right before the bracket.
\left(frac{1}{\pi}\right)^n
| syntax | description | example |
|---|---|---|
| \textbf{text} | bold text | |
| \underline{text} | underline text | |
| \textit{text} | italic text |
undordered lists: \begin{itemize} \item First bullet point \end{itemize}
ordered lists \begin{enumerate} \item First bullet point \end{enumerate}
Wrap everything into:
\documentClass{article}
\usepackage[utf8]{inputenc}
\title{my document}
\author{me}
\date{May 2023}
\begin{document}
\maketitle
\chapter{First Chapter}
\section{Introduction}
...
\end{document}