-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbeamer-sample.tex
115 lines (95 loc) · 2.38 KB
/
beamer-sample.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
\documentclass[unicode,aspectratio=169]{beamer}
\usepackage{zxjatype}
\usepackage[ipaex]{zxjafont}
\usepackage{metalogo}
\usetheme{Berkeley}
\setbeamertemplate{footline}[frame number] %ページ番号
\begin{document}
\title{Beamer Sample}
\subtitle{サブタイトルはここに}
\author{eisoku9618}
\institute{所属はここに}
\date{\today}
\frame{\titlepage}
\frame{\frametitle{目次は自動生成です}\tableofcontents}
\section{section 1}
\frame{\frametitle{ここに文字を入れるとタイトルになる}
はろーわーるど\\
このサンプルは以下から拝借\\
\url{http://www2.informatik.uni-freiburg.de/~frank/ENG/beamer/example/Beamer-class-example1.tex}
}
\subsection{Subsection no.1.1}
\frame{
タイトル無しも可能
}
\section{section 2}
\subsection{list I}
\frame{\frametitle{番号なしリスト}
\begin{itemize}
\item これは \XeLaTeX を使っています.
\item ので,日本語が入力できます.
\item \XeLaTeX は \XeTeX 上で動く \LaTeX らしいです.
\item テーマは Berkeley を使っています.左側がおしゃれなので.
\end{itemize}
}
\frame{\frametitle{アニメーション的なことが pause で出来ます}
\begin{itemize}
\item まずこれ
\pause
\item 次にこれ
\pause
\item そして
\pause
\item 最後
\end{itemize}
}
\subsection{list II}
\frame{\frametitle{番号付きリスト}
\begin{enumerate}
\item あ
\item い
\item う
\end{enumerate}
}
\frame{\frametitle{こちらもpauseができます}
\begin{enumerate}
\item あ
\item い
\pause
\item う
\end{enumerate}
}
\section{section 3}
\subsection{Tables}
\frame{\frametitle{Tables}
\begin{tabular}{|c|c|c|}
\hline
\textbf{Date} & \textbf{Instructor} & \textbf{Title} \\
\hline
WS 04/05 & Sascha Frank & First steps with \LaTeX \\
\hline
SS 05 & Sascha Frank & \LaTeX \ Course serial \\
\hline
\end{tabular}}
\frame{\frametitle{Tables with pause}
\begin{tabular}{c c c}
A & B & C \\
\pause
1 & 2 & 3 \\
\pause
A & B & C \\
\end{tabular} }
\section{section 4}
\subsection{blocs}
\frame{\frametitle{blocs}
\begin{block}{title of the bloc}
bloc text
\end{block}
\begin{exampleblock}{title of the bloc}
bloc text
\end{exampleblock}
\begin{alertblock}{title of the bloc}
bloc text
\end{alertblock}
}
\end{document}