%---------------------------------------------------------------------------------------- % TITLE PAGE %----------------------------------------------------------------------------------------
\title[Short 题目]{Full Title of the Talk 题目} % The short title appears at the bottom of every slide, the full title is only on the title page
\author{姓名} % 名字 \institute[NU] % 机构缩写 { Name of University \\ % 机构全称 \medskip \textit{[email protected]} % 邮件 } \date[2020.6.23]{2020~年~6~月~23~日} % 日期
\graphicspath{{./figures/}}
\begin{document}
% only change the spacing of body text \setlength{\baselineskip}{15pt}
\begin{frame} \frametitle{Blocks of Highlighted Text} \begin{block}{Block Title} This is the block environment. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. \end{block}
\begin{exampleblock}{Block Title} This is the exampleblock environment. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. \end{exampleblock}
\begin{alertblock}{Block Title} This is the alertblock environment. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. \end{alertblock} \end{frame}
\begin{frame} \frametitle{左右分栏} % Multiple Columns \begin{columns}[t] % The "c" option specifies centered vertical alignment while the "t" option is used for top vertical alignment
\column{.45\textwidth} % Left column and width \textbf{Heading} \begin{enumerate} \item Statement \item Explanation \item Example \end{enumerate}
\column{.5\textwidth} % Right column and width The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. \end{columns} \end{frame}
\begin{frame} \frametitle{定理环境} \begin{definition} \upshape\rmfamily This is a definition environment. 这是一个定义环境. \end{definition}
\begin{lemma} \upshape\rmfamily This is a lemma environment. 这是一个引理环境. \end{lemma}
\begin{proposition} \upshape\rmfamily This is a proposition environment. 这是一个命题环境. \end{proposition}
\begin{theorem}[Mass--energy] \upshape\rmfamily This is a theorem environment. 这是一个定理环境. \end{theorem}
\begin{proof} This is a proof environment. 这是一个证明环境. \end{proof}
\end{frame}
%------------------------------------------------
\begin{frame} \frametitle{定理示例}
\begin{theorem}[Lax-Milgram Lemma] \upshape Let $X$ be a Hilbert space, let$a(\cdot, \cdot)$ : $X \times X \rightarrow \mathbb{R}$ be a continuous and coercive bilinear form, and let$F : X \rightarrow \mathbb{R}$ be a linear functional in$X^{\prime}$. Then the variational problem: \begin{equation} \alert{ \left\{\begin{aligned} &\text {Find } u \in X \text { such that } \\ &a(u, v)=F(v), \forall v \in X \end{aligned} \right. } \end{equation} has a unique solution. Moreover, we have \begin{equation} \alert{ \|u\| \leq \frac{1}{\alpha}\|F\|_{X^{\prime}} } \end{equation} \end{theorem}
\end{frame}
%------------------------------------------------
\begin{frame}[fragile] % Need to use the fragile option when verbatim is used in the slide \frametitle{Verbatim} \begin{example}[Theorem Slide Code] \begin{verbatim} \begin{frame} \frametitle{Theorem} \begin{theorem}[Mass--energy equivalence] $E = mc^2$ \end{theorem} \end{frame}\end{verbatim} \end{example}
\begin{frame}[fragile] % Need to use the fragile option when verbatim is used in the slide \frametitle{Citation} An example of the \verb|\cite| command to cite within the presentation:\\~
This statement requires citation \cite{Smith2012}. \\~
文献引用示例 \cite{LiLiu1997}, 可以修改引用文献样式. \end{frame}
%------------------------------------------------
\begin{frame} \frametitle{References} \footnotesize{ \begin{thebibliography}{99} % Beamer does not support BibTeX so references must be inserted manually as below \bibitem[Smith, 2012]{Smith2012} John Smith, Title of the publication, \emph{Journal Name}, 12(3):45--678, 2012. \bibitem[李荣华, 1997]{LiLiu1997} 李荣华, 刘播. 微分方程数值解法. 东南大学出版社, 1997. \end{thebibliography} } \end{frame}