Tex Notes

1. 记得 \maketitle

2. 页眉页脚

\usepackage{fancyhdr}

\pagestyle{fancy}

\lhead{}    \chead{}    \rhead{}

\lfoot{}    \cfoot{}    \rfoot{}

3. \section*{sec1} use * to hide the numbers

4. \textbf{} 粗体

5. 大的大括号

\begin{cases}

    T(n)=T(n-1)+\frac{1}{n}  \\

    T(1)=1 

\end{cases}

6. 公式对齐 加&

$\begin{aligned}

1+1 &= 2 \\ &= 3 - 1

\end{aligned}$

7. \linespread{1.6} 行距

8. 页边距

\usepackage[top=1in, bottom=1in, left=1.25in, right=1.25in]{geometry}

你可能感兴趣的:(Tex Notes)