%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % INNER THEME - The meat and potatoes of your slides % Defines: title page, blocks, itemized lists %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \mode %%%% TEXT THINGS %Itemized Lists / Enumerated Lists \setbeamertemplate{items}[square] %Blocks \setbeamertemplate{blocks}[shadow=true] %%%% TITLE PAGE \defbeamertemplate*{title page}{dane}[1][]{ \begin{beamercolorbox}[wd = \paperwidth, ht = \paperheight]{title page} \begin{tikzpicture} \useasboundingbox (0,0) rectangle(\paperwidth,\paperheight); %title \node(title)[anchor = north west] at (0,11.75) {\parbox[t]{16cm}{\raggedright\LARGE\textbf\inserttitle}}; %Title Image - TikZ reactor visualization \node(title_image)[anchor = center] at (11,5) { \begin{tikzpicture} % Adjustable parameters \pgfmathsetmacro\reactorsize{1.5} % cm \pgfmathsetmacro\operatorsize{0.2} % cm \pgfmathsetmacro\width{8} % cm \pgfmathsetmacro\height{6} % cm % Randomly place reactors \foreach \i in {1,...,100} { \pgfmathsetmacro\xpos{rand*\width/2 + \width/2} \pgfmathsetmacro\ypos{rand*\height/2 - \height/2} \node[opacity=1.0] at (\xpos, \ypos) {\includegraphics[width=\reactorsize cm]{images/2_state_of_the_art/nuclear-plant.png}}; } % Sprinkle operators on top \foreach \i in {1,...,20} { \pgfmathsetmacro\xpos{rand*\width/2 + \width/2} \pgfmathsetmacro\ypos{rand*\height/2 - \height/2} \node[opacity=1.0] at (\xpos, \ypos) {\includegraphics[width=\operatorsize cm]{images/2_state_of_the_art/worker.png}}; } \end{tikzpicture} }; %Author Block \node(author)[anchor = west] at (0,6) {\parbox[c]{5cm}{\raggedright\insertauthor}}; \node(institute)[anchor = north, below = 0.1cm of author] {\parbox[c]{5cm}{\raggedright\small\insertinstitute}}; \node(date)[anchor = north, below = 0.25cm of institute] {\parbox[c]{5cm}{\raggedright\small\insertdate}}; %logo \node(logo)[anchor = south west] at (0,.75) {\includegraphics[width = 3cm]{images/logo.png}}; %Surrounding Structure \fill[secondary] (0,0) rectangle(\paperwidth, 0.5); \end{tikzpicture} \end{beamercolorbox} } \mode