-
Notifications
You must be signed in to change notification settings - Fork 0
/
subject-matter.tex
127 lines (101 loc) · 2.73 KB
/
subject-matter.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
% Copyright (c) 2020, Santtu Söderholm <[email protected]>
%
% This file may be distributed and/or modified under the LaTeX Project Public License.
%
\begin{frame}[noframenumbering, plain]
\titlepage
\end{frame}
\begin{frame}[noframenumbering, plain]{Table of contents}
\tableofcontents
\end{frame}
\section{First section}
\begin{frame}{An itemized frame}
\begin{itemize}
\item Here are\ldots
\item \ldots a few bullets.
\end{itemize}
\end{frame}
\section{Second section}
\begin{frame}{An enumerated frame}
\begin{enumerate}
\item Here are\ldots
\item \ldots a few bullets.
\end{enumerate}
\end{frame}
\section{Section with mathematics}
\begin{frame}{Frame with mathematics}
The approximated Navier--Stokes equations
\begin{align*}
\rho\mathbf u_t + \rho\divop\arcs{\mathbf u\otimes\mathbf u} - \divop\arcs{\mu\mathbf{Su}} + \nabla p
&=
\rho\mathbf f
&
\text{in}\quad\Omega\times[0,T]
\\
\divop\mathbf u
&=
0
&
\text{in}\quad\Omega\times[0,T]
\\
\mathbf u\arcs{\mathbf x; 0}
&=
0
&
\text{on}\quad\Omega\times[0,T]
\\
p\arcs{\mathbf x; t}
&=
p^{\arcs{\mathcal{B}}}\arcs{\mathbf x; t}
-
\frac{1}{\upsilon\lambda}
\frac{\partial p}{\partial\bvec n}
&
\text{on}\quad\partial\Omega
\end{align*}
may be used to solve for the pressure \(p\) and velocity \(\mathbf u\) in
blood vessels.~\cite{samavaki--etal-2023}
\end{frame}
\section{A Biased section}
\begin{frame}{A biased frame}
Julia is an awesome language.~\cite{Bezanson--Edelman--Karpinski-2017}
\end{frame}
\section{Section with a background image}
\begingroup
\setbackgroundimage[0.5](0.5){../tau-logo/tau-logo.pdf}
\begin{frame}{A frame with a background image}
The image you see in this frame is a bacground image. Any text written
here will flow over it. Image transparency might need to be set
appropriately, for text to be visible.
\end{frame}
\endgroup
\section{Tables}
\begin{frame}{Frame with a table (or two)}
\begin{center}
\captionof{table}{A table caption.}
\begin{tabular}{l | l l }
\toprule
Header column & First data column & Second data column \\
\midrule
Header 1 & \(a_{1,1}\) & \(a_{1,2}\) \\
Header 2 & \(a_{2,1}\) & \(a_{2,2}\) \\
\bottomrule
\end{tabular}
\end{center}
\begin{center}
\captionof{table}{A second table caption.}
\begin{tabular}{l | l l }
\toprule
Header column & First data column & Second data column \\
\midrule
Header 1 & \(a_{1,1}\) & \(a_{1,2}\) \\
Header 2 & \(a_{2,1}\) & \(a_{2,2}\) \\
\bottomrule
\end{tabular}
\end{center}
\end{frame}
\section{References}
\begin{frame}{References}
\printbibliography[heading=none]
\end{frame}
\finalpage{Thank you!}