-
Notifications
You must be signed in to change notification settings - Fork 0
/
KU_en.tex
77 lines (61 loc) · 1.54 KB
/
KU_en.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
% KYUSHU UNIVERSITY beamer template
% Created by Yu in 2024
\documentclass[11pt]{beamer}
% You can use \documentclass[11pt,aspectratio=169]{beamer}
% to adjust the aspect ratio to 16:9.
\usepackage{graphicx}
\usepackage{listings}
\usepackage[
backend=biber,
style=verbose,
sorting=ynt
]{biblatex}
\addbibresource{references.bib}
\usetheme{Madrid}
\author[Presenter]{Presenter}
\title[Short title]{Presentation title}
\setbeamertemplate{navigation symbols}{}
\titlegraphic{\includegraphics[width=3cm]{resources/KU_en.png}}
% Uncomment the section below to show a table of contents slide every time a new section starts
% \AtBeginSection[]
% {
% \begin{frame}<beamer>
% \frametitle{Table of contents}
% \tableofcontents[currentsection]
% \end{frame}
% }
\usepackage{Kyushu}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\section{Example}
\begin{frame}{Example slide 1}
We compute the matrix of outputs as\footnote{\cite{vaswaniAttentionAllYou2023}}:
$$
\mathrm{Attention}(Q, K, V) = \mathrm{softmax}(\frac{QK^T}{\sqrt{d_k}})V
$$
\end{frame}
\begin{frame}{Example slide 2}
\begin{table}
\centering
\begin{tabular}{|c|c|c|}
\hline
\textbf{Header 1} & \textbf{Header 2} & \textbf{Header 3} \\
\hline
Cell 1-1 & Cell 1-2 & Cell 1-3 \\
\hline
Cell 2-1 & Cell 2-2 & Cell 2-3 \\
\hline
Cell 3-1 & Cell 3-2 & Cell 3-3 \\
\hline
\end{tabular}
\caption{A Simple Table}
\end{table}
\end{frame}
\section{Bibliography}
\begin{frame}[t,allowframebreaks]
\frametitle{Bibliography}
\printbibliography
\end{frame}
\end{document}