-
Notifications
You must be signed in to change notification settings - Fork 3
/
ZJU_BeamerTemplate.tex
130 lines (106 loc) · 3.18 KB
/
ZJU_BeamerTemplate.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
%# -*- coding:utf-8 -*-
\documentclass[10pt,aspectratio=169,mathserif]{beamer}
%设置为 Beamer 文档类型,设置字体为 10pt,长宽比为16:9,数学字体为 serif 风格
%%%%-----导入宏包-----%%%%
\usepackage{zju} %导入 zju 模板宏包
\usepackage{ctex} %导入 ctex 宏包,添加中文支持
\usepackage{amsmath,amsfonts,amssymb,bm} %导入数学公式所需宏包
\usepackage{color} %字体颜色支持
\usepackage{graphicx,hyperref,url}
\usepackage{metalogo} % 非必须
%% 上文引用的包可按实际情况自行增删
%%%%%%%%%%%%%%%%%%
\usepackage{fontspec}
\usepackage{xeCJK}
% \setCJKmainfont{Source Han Sans SC}
\beamertemplateballitem %设置 Beamer 主题
%%%%------------------------%%%%%
\catcode`\。=\active %或者=13
\newcommand{。}{.}
%将正文中的“。”号转换为“.”。中文标点国家规范建议科技文献中的句号用圆点替代
%%%%%%%%%%%%%%%%%%%%%
%%%%----首页信息设置----%%%%
\title[浙江大学 Beamer 模板]{浙江大学 Beamer 模板}
\subtitle{——这里是副标题}
%%%%----标题设置
\author[Guang Touge]{
光头哥 \\\medskip
{\small \url{[email protected]}} \\
{\small \url{https://www.zju.edu.cn/}}}
%%%%----个人信息设置
\institute[IOPP]{
计算机学院 \\
浙江大学}
%%%%----机构信息
\date[Oct. 12 2024]{
2024年10月12日}
%%%%----日期信息
\begin{document}
\begin{frame}
\titlepage
\end{frame} %生成标题页
\section{提纲}
\begin{frame}
\frametitle{提纲}
\tableofcontents
\end{frame} %生成提纲页
\section{介绍}
\begin{frame}
\frametitle{介绍}
\begin{itemize}
\item {编译方式}
\begin{itemize}
\item 推荐安装完整版的 TeXLive
\item 使用 \XeLaTeX 编译
\end{itemize}
\item 请参考 \LaTeX 和 Beamer 用户文档
\item 行内数学公式示例 $\sin^2 \theta + \cos^2 \theta = 1$
\item {行间数学公式示例 \begin{equation}
y_{1}=\int \sin x\, {\rm d}x
\end{equation} }
\item 基于“浙大蓝”颜色 \url{https://www.zju.edu.cn/}
\end{itemize}
\end{frame}
\section{内置环境}
\begin{frame}
\frametitle{内置环境}
\begin{block}{Slides with \LaTeX}
Beamer offers a lot of functions to create nice slides using \LaTeX.
\end{block}
\begin{block}{The basis}
内部使用以下主题
\begin{itemize}
\item split
\item whale
\item rounded
\item orchid
\end{itemize}
\end{block}
\end{frame}
\begin{frame}
\frametitle{带数字列表}
\begin{enumerate}
\item This just shows the effect of the style
\item It is not a Beamer tutorial
\item Read the Beamer manual for more help
\item Contact me only concerning the style file
\end{enumerate}
\end{frame}
\section{结论}
\begin{frame}
\frametitle{结论}
\begin{itemize}
\item Easy to use
\item Good results
\end{itemize}
\end{frame}
\section{参考文献}
\begin{frame}{参考文献}
\begin{thebibliography}{99}
\bibitem{zhao1} Yi~Zhao, {\sl An introduction to X}, Sep.~15, 2015
\bibitem{qian2} Er~Qian, San~Sun,
Phys.\ Lett.\ A {\bf xx}, 2xx (20xx)
\bibitem{li4} Si~Li, Phys.\ Rev.\ C {\bf xx}, 5xx (20xx)
\end{thebibliography}
\end{frame}
\end{document}