Memo for LaTex Tricks.
1. Manual Spacing Adjustment
vspace{-1em}
2. Embedding Videos in LaTex Beamer
3. Outline For Each Section
\AtBeginSection[]
{
\addtocounter{framenumber}{-1} %目录页不计算页码
\begin{frame}<beamer>
\frametitle{Outline}
\tableofcontents[currentsection]
\end{frame}
}