-
Notifications
You must be signed in to change notification settings - Fork 61
/
slides.tex
56 lines (50 loc) · 1.21 KB
/
slides.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
% !Mode:: "TeX:UTF-8"
% !TEX program = xelatex
% !BIB program = biber
\documentclass{ctexbeamer}
% Preamble
\input{config/beamer.tex}
% Information
\title[短标题]{显示在标题页的长标题}
\author[Iydon]{Iydon Liang}
\institute[SUSTech]{Southern University of Science and Technology}
\begin{document}
\section{中文测试}
\begin{frame}{中文测试}
\zhlipsum[1]
\end{frame}
\section{英文测试}
\begin{frame}{英文测试}
\lipsum[1]
\end{frame}
\section{常规测试}
\subsection{列表测试}
\begin{frame}[<+->][t]{列表测试}
\begin{enumerate}
\item A;
\item B;
\item C.
\end{enumerate}
\begin{itemize}
\item A;
\item B;
\item C.
\end{itemize}
\end{frame}
\subsection{块测试}
\begin{frame}[<+->][t]{块测试}
\begin{block}{标题}
A.
\end{block}
\begin{block}{标题}
B.
\end{block}
\begin{block}{标题}
C. cite something\cite{Nicholas1998Handbook}
\end{block}
\end{frame}
\section{参考文献}
\begin{frame}[t,allowframebreaks]{参考文献}
\printbibliography[]
\end{frame}
\end{document}