-
Notifications
You must be signed in to change notification settings - Fork 0
/
journal.tex
53 lines (43 loc) · 1.21 KB
/
journal.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
% -*- LaTeX -*-
% -*- coding: utf-8 -*-
%
% michael a.g. aïvázis <[email protected]>
% (c) 1998-2020 all rights reserved
%
% where things are
\makeatletter
\providecommand*{\input@path}{}
\edef\input@path{{sections/}{config/}\input@path}
\makeatother
% here we go
\documentclass[10pt,compress,t,aspectratio=169]{beamer}
% packages, setup, macros, etc.
\input{setup}
% the document
\title[journal]{journal}
\author[\url{[email protected]}]{Michael A.~G.~A\"iv\'azis}
\institute{\small parasim}
\date{\small August 2020}
\begin{document}
% title slide
\begin{frame}[plain]
% the logo
\begin{tikzpicture}[remember picture,overlay]
\node[anchor=south east, xshift=-1em, yshift=1em] at (current page.south east) {%
\includegraphics[scale=0.25]{figures/pyre-logo.pdf}};
\end{tikzpicture}
% make the title page
\maketitle
\end{frame}
% place the logo on the title area of each slide
\addtobeamertemplate{frametitle}{}{%
\begin{tikzpicture}[remember picture,overlay]
\node[anchor=north east,yshift=-.5em] at (current page.north east) {%
\includegraphics[scale=0.15]{figures/pyre-logo.pdf}};
\end{tikzpicture}
}
% the sections
\input{hello}
% all done
\end{document}
% end of file