-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsiparty.tex
81 lines (67 loc) · 3.54 KB
/
siparty.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
\documentclass{beamer}
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{background canvas}{\includegraphics[width=\paperwidth]{London_Eye_-_panoramio_(7)}}
\usepackage{tikz}
\usetikzlibrary{calc}
\usepackage{decorule}
\definecolor{col1}{HTML}{f8a909}
\definecolor{col2}{HTML}{cf122d}
\definecolor{col3}{HTML}{ab378c}
\definecolor{col4}{HTML}{412884}
\definecolor{col5}{HTML}{195da9}
\definecolor{col6}{HTML}{62a830}
\definecolor{col7}{HTML}{ec6728}
\newcounter{maxframe}
\setcounter{maxframe}{800}
\makeatletter
\newcommand*{\slideinframe}{\number\beamer@slideinframe}
\makeatother
\begin{document}
\begin{frame}
\begin{tikzpicture}[remember picture, overlay, font=\sffamily\color{white}]
% \draw[green,ultra thick] (3,-0.4) circle [radius=2.9];
\foreach \x in {0}{
\begin{scope}[circle,draw=white,thick,minimum width=3em]
\node<+>[fill=col1] (B1) at ($(3,-0.4)+(\x+90+0*360/7:2.9)$) {s};
\node<.>[fill=col2] (B2) at ($(3,-0.4)+(\x+90+1*360/7:2.9)$) {kg};
\node<.>[fill=col3] (B3) at ($(3,-0.4)+(\x+90+2*360/7:2.9)$) {mol};
\node<.>[fill=col4] (B4) at ($(3,-0.4)+(\x+90+3*360/7:2.9)$) {cd};
\node<.>[fill=col5] (B5) at ($(3,-0.4)+(\x+90+4*360/7:2.9)$) {K};
\node<.>[fill=col6] (B6) at ($(3,-0.4)+(\x+90+5*360/7:2.9)$) {A};
\node<.>[fill=col7] (B7) at ($(3,-0.4)+(\x+90+6*360/7:2.9)$) {m};
\foreach \y in {1,...,7}{
\draw[white,thick] (B\y) -- (3,-0.4);
}
\end{scope}
}
\node at (15-20*\slideinframe/\themaxframe,-3.5) {\includegraphics[width=3cm]{joseph}};
\node[white,font=\tiny,text width=\paperwidth,align=center,anchor=south] at (current page.south) {Image source: \url{https://commons.wikimedia.org/wiki/File:London_Eye_-_panoramio_(7).jpg}\linebreak
Music: \url{https://www.youtube.com/watch?v=h6vca9PnlyI}};
\fill[black,opacity=0.7] (current page.south east) rectangle (current page.north west);
\node[text width=.8\textwidth,align=center,font=\Large\color{white}] at (current page.center) { To celebrate all the new features \linebreak and bug fixes of \texttt{siunitx}\bigskip \linebreak \decorule\bigskip \linebreak Thank you @Joseph!};
\end{tikzpicture}
\pause[100]
\end{frame}
\begin{frame}
\begin{tikzpicture}[remember picture, overlay, font=\sffamily\color{white}]
% \draw[green,ultra thick] (3,-0.4) circle [radius=2.9];
\foreach \x in {0,-1,...,-\themaxframe}{
\begin{scope}[circle,draw=white,thick,minimum width=3em]
\node<+>[fill=col1] (B1) at ($(3,-0.4)+(\x+90+0*360/7:2.9)$) {s};
\node<.>[fill=col2] (B2) at ($(3,-0.4)+(\x+90+1*360/7:2.9)$) {kg};
\node<.>[fill=col3] (B3) at ($(3,-0.4)+(\x+90+2*360/7:2.9)$) {mol};
\node<.>[fill=col4] (B4) at ($(3,-0.4)+(\x+90+3*360/7:2.9)$) {cd};
\node<.>[fill=col5] (B5) at ($(3,-0.4)+(\x+90+4*360/7:2.9)$) {K};
\node<.>[fill=col6] (B6) at ($(3,-0.4)+(\x+90+5*360/7:2.9)$) {A};
\node<.>[fill=col7] (B7) at ($(3,-0.4)+(\x+90+6*360/7:2.9)$) {m};
\foreach \y in {1,...,7}{
\draw[white,thick] (B\y) -- (3,-0.4);
}
\end{scope}
}
\node at (15-20*\slideinframe/\themaxframe,-3.5) {\includegraphics[width=3cm]{joseph}};
\node[white,font=\tiny,text width=\paperwidth,align=center,anchor=south] at (current page.south) {Image source: \url{https://commons.wikimedia.org/wiki/File:London_Eye_-_panoramio_(7).jpg}\linebreak
Music: \url{https://www.youtube.com/watch?v=h6vca9PnlyI}};
\end{tikzpicture}
\end{frame}
\end{document}