Build background from primitives and get rid of hole background png/svg files
@ -1,7 +1,7 @@
|
||||
%
|
||||
% beamerthemeKenotom.sty
|
||||
%
|
||||
% A beamer style file to use in a beamer presentation
|
||||
% A beamer style file to use in a kenotom presentation
|
||||
%
|
||||
% author: Christos Choutouridis <c.choutouridis@kenotom.com>
|
||||
%
|
||||
@ -17,16 +17,13 @@
|
||||
\RequirePackage{fontspec}
|
||||
\RequirePackage{tikz}
|
||||
\RequirePackage{graphicx}
|
||||
%\RequirePackage{enumitem}
|
||||
%\RequirePackage{hyperref}
|
||||
\RequirePackage{ifthen}
|
||||
|
||||
|
||||
% Options
|
||||
% =====================================================
|
||||
|
||||
% aspectratio: {43(default), 169}
|
||||
\DeclareOptionBeamer{aspectratio}{\def\beamer@kenotom@aspectratio{#1}}
|
||||
|
||||
% theme: {classic(default), light, dark}
|
||||
\DeclareOptionBeamer{theme}{\def\beamer@kenotom@theme{#1}}
|
||||
|
||||
@ -36,14 +33,14 @@
|
||||
% title: {normal(default), small, large}
|
||||
\DeclareOptionBeamer{title}{\def\beamer@kenotom@title{#1}}
|
||||
|
||||
% nonavigation
|
||||
%\DeclareOptionBeamer{nonavigation}{\setbeamertemplate{navigation symbols}{}}
|
||||
% nonavigation: {enable(default), disable}
|
||||
\DeclareOptionBeamer{navigation}{\def\beamer@kenotom@navigation{#1}}
|
||||
|
||||
% Set default options
|
||||
\ExecuteOptionsBeamer{aspectratio=43}
|
||||
\ExecuteOptionsBeamer{theme=classic}
|
||||
\ExecuteOptionsBeamer{backround=none}
|
||||
\ExecuteOptionsBeamer{title=normal}
|
||||
\ExecuteOptionsBeamer{navigation=enable}
|
||||
|
||||
\ProcessOptionsBeamer
|
||||
|
||||
@ -55,11 +52,13 @@
|
||||
% =====================================================
|
||||
|
||||
% Define some colors
|
||||
%\definecolor{KenotomGreen}{RGB}{67,174,158}
|
||||
\definecolor{KenotomGreenLight}{RGB}{127,213,201}
|
||||
\definecolor{KenotomGreen}{RGB}{57,174,157}
|
||||
\definecolor{KenotomGreenDark}{RGB}{39,103,96}
|
||||
\definecolor{KenotomGreenGrey}{RGB}{67,91,92}
|
||||
|
||||
\definecolor{KenotomGreenGreyLight}{RGB}{203,217,217}
|
||||
\definecolor{KenotomGreenGrey}{RGB}{67,91,92}
|
||||
\definecolor{KenotomGreenGreyDark}{RGB}{13,34,39}
|
||||
|
||||
\definecolor{KenotomGreyLight}{RGB}{215,216,216}
|
||||
\definecolor{KenotomGrey}{RGB}{154,155,157}
|
||||
@ -68,20 +67,11 @@
|
||||
|
||||
\definecolor{KenotomLightBlue1}{RGB}{207,226,234}
|
||||
\definecolor{KenotomLightBlue2}{RGB}{232,241,245}
|
||||
|
||||
\definecolor{KenotomBlack}{RGB}{0,0,0}
|
||||
\definecolor{KenotomWhite}{RGB}{255,255,255}
|
||||
|
||||
|
||||
% Define kenotom logos
|
||||
\pgfdeclareimage[height=0.075\paperheight]{Logo1}{media/kenotomLogo1.png}
|
||||
\pgfdeclareimage[height=0.075\paperheight]{Logo2}{media/kenotomLogo2.png}
|
||||
\pgfdeclareimage[height=0.04\paperheight]{Logo3}{media/kenotomLogo3.png}
|
||||
\pgfdeclareimage[height=0.04\paperheight]{Logo4}{media/kenotomLogo4.png}
|
||||
\pgfdeclareimage[height=0.06\paperheight]{Logo5}{media/kenotomLogo5.png}
|
||||
|
||||
%\pgfdeclareimage[height=0.04\paperheight]{Banner}{media/kenotomBanner.png}
|
||||
|
||||
|
||||
% Local commands
|
||||
% =====================================================
|
||||
|
||||
@ -102,12 +92,77 @@
|
||||
\setbeamertemplate{itemize subsubitem}{\tiny\includegraphics[height=#1]{#2}}
|
||||
}
|
||||
|
||||
\newcommand{\SetBackroundImage}[1]{
|
||||
% [1]: Banner image
|
||||
\newcommand{\SetBackroundPlain}[1]{%
|
||||
\setbeamertemplate{background}{%
|
||||
\includegraphics[width=\paperwidth,height=\paperheight,keepaspectratio]{#1}
|
||||
\begin{tikzpicture}[overlay,remember picture]
|
||||
% Banner
|
||||
\node[anchor=east, inner sep=0pt, yshift=-0.06\paperheight] at (current page.north east) {%
|
||||
\includegraphics[width=0.2\paperwidth]{#1}
|
||||
};%
|
||||
\end{tikzpicture}%
|
||||
}
|
||||
}
|
||||
|
||||
% [1]: [social]:
|
||||
% {2}: Banner image
|
||||
% {3}: background image
|
||||
% {4}: Opacity
|
||||
\newcommand{\SetBackgroundImage}[4][noSocial]{%
|
||||
|
||||
\setbeamertemplate{background}{%
|
||||
\begin{tikzpicture}[overlay,remember picture]
|
||||
% Banner
|
||||
\node[anchor=east, inner sep=0pt, yshift=-0.06\paperheight] at (current page.north east) {%
|
||||
\includegraphics[width=0.2\paperwidth]{#2}
|
||||
};%
|
||||
% Image
|
||||
\node[anchor=center, inner sep=0pt, yshift=0.04\paperheight, opacity=#4] at (current page.center) {%
|
||||
\includegraphics[width=\paperwidth]{#3}
|
||||
};%
|
||||
% Social links
|
||||
\ifnum \isequal{#1}{social}=0
|
||||
\node[anchor=west, inner sep=0pt, xshift=0.05\paperwidth, yshift=-0.06\paperheight] at (current page.north west) {%
|
||||
\includegraphics[width=0.5cm]{media/Social.png}
|
||||
};%
|
||||
\fi
|
||||
\end{tikzpicture}%
|
||||
}
|
||||
}
|
||||
|
||||
%\SetBackgroundImage[social]{media/kenotomBannerRight.png}{media/ribon.png}{0.15}
|
||||
%\SetBackgroundImage{media/kenotomBannerRight.png}{media/ribon.png}{0.15}
|
||||
|
||||
|
||||
% {1}: Banner image
|
||||
% {2}: color 1
|
||||
% {3}: color 1
|
||||
%\newcommand{\SetBackgroundBicolor}[3]{%
|
||||
% \setbeamertemplate{background}{%
|
||||
% \begin{tikzpicture}[overlay,remember picture]
|
||||
% % Fill
|
||||
%% \node [shading = axis,rectangle, left color=left, right color=left!30!white,shading angle=135, anchor=north, minimum width=\paperwidth, minimum height=5.5cm] (box) at (current page.north){};
|
||||
% \node[shading=axis,rectangle, left color=KenotomGreen, right color=KenotomGrey, middle color=KenotomGreen!30, shading angle=135, opacity=0.2, anchor=north, minimum width=\paperwidth, minimum height=\paperheight] (box) at (current page.north){};%
|
||||
%
|
||||
%% \fill[shading=axis, shading angle=135, left color=KenotomGreen, right color=KenotomGrey, middle color=KenotomGreen!5, opacity=0.5] (current page.south west)
|
||||
%% -- +(0, \paperheight) -- +(\paperwidth, \paperheight) -- (current page.south east) -- cycle;%
|
||||
% % Banner
|
||||
% \node[anchor=north east, inner sep=0pt, yshift=-0.06\paperheight] at (current page.north east) {%
|
||||
% \includegraphics[width=0.2\paperwidth]{#1}
|
||||
% };%
|
||||
% \end{tikzpicture}%
|
||||
% }
|
||||
%}
|
||||
%
|
||||
%\SetBackgroundBicolor{media/kenotomBannerRight.png}{ }{ }
|
||||
|
||||
\newcommand{\BeginCountingFrames}{%
|
||||
\addtobeamertemplate{navigation symbols}{}{%
|
||||
\hspace{2em} \usebeamerfont{footline} \texttt{ \scriptsize{\insertframenumber/\inserttotalframenumber}}
|
||||
}
|
||||
\setcounter{framenumber}{0}
|
||||
}
|
||||
|
||||
%
|
||||
% [1]: Color
|
||||
% [2]: Text
|
||||
@ -119,39 +174,29 @@
|
||||
% }
|
||||
%}
|
||||
|
||||
%\newcommand{\InsertNavigation}{%
|
||||
% \insertslidenavigationsymbol%
|
||||
% \insertframenavigationsymbol%
|
||||
% \insertsubsectionnavigationsymbol%
|
||||
% \insertsectionnavigationsymbol%
|
||||
% \insertdocnavigationsymbol%
|
||||
% \insertbackfindforwardnavigationsymbol%
|
||||
%}
|
||||
|
||||
|
||||
%
|
||||
% Theme
|
||||
% =====================================================
|
||||
|
||||
\ifnum \isequal{\beamer@kenotom@theme}{dark}=0
|
||||
\colorlet{BackroundCanvasColor}{KenotomBlack}
|
||||
\colorlet{TitleColor}{KenotomGrey}
|
||||
\colorlet{TitleColorAux}{KenotomGreen}
|
||||
\colorlet{FrameTitleColor}{KenotomGreyDark1}
|
||||
\colorlet{BlockTitleColor}{KenotomGreyDark1}
|
||||
\colorlet{BackgroundCanvasColor}{KenotomGreenGreyDark}
|
||||
\colorlet{TitleColor}{KenotomGreyLight}
|
||||
\colorlet{TitleColorAux}{KenotomGreenLight}
|
||||
\colorlet{FrameTitleColor}{KenotomGrey}
|
||||
\colorlet{BlockTitleColor}{KenotomGrey}
|
||||
|
||||
\colorlet{TextColor}{KenotomGreenGrey}
|
||||
\colorlet{StructureColor}{KenotomGreen}
|
||||
\colorlet{TextColor}{KenotomGreenGreyLight}
|
||||
\colorlet{StructureColor}{KenotomGreenLight}
|
||||
|
||||
\colorlet{NavigationColor}{KenotomGreen}
|
||||
\colorlet{NavigationArrowsColor}{KenotomWhite}
|
||||
\colorlet{NavigationArrowsColor}{KenotomGreyLight}
|
||||
|
||||
\colorlet{TableCaptionColor}{KenotomGreyDark1}
|
||||
\colorlet{TableCaptionTextColor}{KenotomWhite}
|
||||
\colorlet{TableRowColor1}{KenotomLightBlue1}
|
||||
\colorlet{TableRowColor2}{KenotomLightBlue2}
|
||||
\else \ifnum \isequal{\beamer@kenotom@theme}{light}=0
|
||||
\colorlet{BackroundCanvasColor}{KenotomWhite}
|
||||
\colorlet{BackgroundCanvasColor}{KenotomWhite}
|
||||
\colorlet{TitleColor}{KenotomGrey}
|
||||
\colorlet{TitleColorAux}{KenotomGreen}
|
||||
\colorlet{FrameTitleColor}{KenotomGrey}
|
||||
@ -168,7 +213,7 @@
|
||||
\colorlet{TableRowColor1}{KenotomLightBlue1}
|
||||
\colorlet{TableRowColor2}{KenotomLightBlue2}
|
||||
\else % clasic
|
||||
\colorlet{BackroundCanvasColor}{KenotomWhite}
|
||||
\colorlet{BackgroundCanvasColor}{KenotomWhite}
|
||||
\colorlet{TitleColor}{KenotomGreyDark1}
|
||||
\colorlet{TitleColorAux}{KenotomGreen}
|
||||
\colorlet{FrameTitleColor}{KenotomGreyDark2}
|
||||
@ -187,7 +232,7 @@
|
||||
\fi\fi
|
||||
|
||||
% Apply theme colors
|
||||
\setbeamercolor{background canvas}{bg=BackroundCanvasColor}
|
||||
\setbeamercolor{background canvas}{bg=BackgroundCanvasColor}
|
||||
\setbeamercolor{titlelike}{fg=FrameTitleColor}
|
||||
\setbeamercolor{block title}{fg=BlockTitleColor}
|
||||
|
||||
@ -200,67 +245,35 @@
|
||||
%
|
||||
% Layout and global settings
|
||||
% =====================================================
|
||||
\newcommand{\SideMargin}{2em}
|
||||
|
||||
% Frame layout
|
||||
\setbeamersize{
|
||||
text margin left=2em,
|
||||
text margin right=2em
|
||||
text margin left=\SideMargin,
|
||||
text margin right=\SideMargin
|
||||
}
|
||||
\setlength{\leftmargini}{1.25em}
|
||||
\setlength{\leftmarginii}{1em}
|
||||
\setlength{\leftmarginiii}{1em}
|
||||
|
||||
%#+LaTeX_HEADER:\addtobeamertemplate{footnote}{}{\vspace{2ex}}
|
||||
\addtobeamertemplate{footnote}{}{\vspace{2ex}}
|
||||
|
||||
% Default backround (We overwrite it with kenotom environments)
|
||||
%\ifnum \isequal{\beamer@kenotom@backround}{ribon}=0
|
||||
% \ifnum \isequal{\beamer@kenotom@aspectratio}{169}=0
|
||||
% \SetBackround{media/backroundRibon169.png}
|
||||
% \else
|
||||
% \SetBackround{media/backroundRibon43.png}
|
||||
% \fi
|
||||
%\else %None
|
||||
% \ifnum \isequal{\beamer@kenotom@aspectratio}{169}=0
|
||||
% \SetBackround{media/backroundNone169.png}
|
||||
% \else
|
||||
% \SetBackround{media/backroundNone43.png}
|
||||
% \fi
|
||||
%\fi%
|
||||
% Default backround (We overwrite it temporary inside kenotom frame environments)
|
||||
\ifnum \isequal{\beamer@kenotom@backround}{ribon}=0
|
||||
\SetBackgroundImage{media/BannerLogoLink.png}{media/Ribon.png}{0.15}
|
||||
\else %None
|
||||
\SetBackgroundPlain{media/BannerLogoLink.png}
|
||||
\fi%
|
||||
|
||||
% Default backround (We overwrite it with kenotom environments)
|
||||
% [1]: Baner image
|
||||
% [2]: backround image
|
||||
% [3]: Opacity
|
||||
%\newcommand{\SetBackround}[3]{%
|
||||
|
||||
\setbeamertemplate{background}{%
|
||||
\begin{tikzpicture}[overlay,remember picture]
|
||||
% Banner
|
||||
\node[anchor=north east, inner sep=0pt, yshift=-0.06\paperheight] at (current page.north east) {%
|
||||
\includegraphics[width=0.2\paperwidth]{media/kenotomBannerRight.png}
|
||||
};%
|
||||
% \ifnum \isnotempty{#2}
|
||||
\node[anchor=center, inner sep=0pt, yshift=0.04\paperheight, opacity=0.1] at (current page.center) {%
|
||||
\includegraphics[width=\paperwidth]{media/ribon.png}
|
||||
};%
|
||||
|
||||
\node[anchor=center, inner sep=0pt, yshift=0.04\paperheight, opacity=1] at (current page.center) {%
|
||||
\includegraphics[width=\paperwidth]{media/kenotomLogoDetails.png}
|
||||
};%
|
||||
% \fi
|
||||
\end{tikzpicture}%
|
||||
}
|
||||
%}
|
||||
|
||||
%\SetBackround{media/kenotomBannerRight.png}{media/ribon.png}{0.15}
|
||||
|
||||
% Fonts
|
||||
\setromanfont{Georgia}
|
||||
\setsansfont[Scale=MatchLowercase]{Open Sans}
|
||||
|
||||
% General
|
||||
%\setbeamertemplate{navigation symbols}{}
|
||||
\ifnum \isequal{\beamer@kenotom@navigation}{disable}=0
|
||||
\setbeamertemplate{navigation symbols}{}
|
||||
\fi
|
||||
\setbeamertemplate{caption}[numbered]
|
||||
|
||||
% Default itemize symbols (We overwrite them with kenotom environments)
|
||||
@ -275,29 +288,11 @@
|
||||
\setbeamerfont{author}{size=\Large}
|
||||
\setbeamerfont{institute}{size=\normalsize}
|
||||
|
||||
|
||||
% Delay headline format
|
||||
%\newcommand{\SetHeadline}{%
|
||||
% \setbeamertemplate{headline}{%
|
||||
% \leavevmode
|
||||
% \hfill \textrm{ \footnotesize{\insertframenumber/\inserttotalframenumber}}
|
||||
%% \hfill \textrm{ \footnotesize{\insertframenumber/\inserttotalframenumber}}
|
||||
% }
|
||||
% \setbeamertemplate{navigation symbols}{\vspace{-1em}}
|
||||
% \addtobeamertemplate{navigation symbols}{\vspace{-1em}}{}
|
||||
%}
|
||||
|
||||
% footline
|
||||
%\setbeamertemplate{navigation symbols}{}
|
||||
%\setbeamertemplate{footlline}{\hfill \insertnavigation{0.3\textwidth}}
|
||||
|
||||
\newcommand{\BeginCountingFrames}{%
|
||||
\addtobeamertemplate{navigation symbols}{}{%
|
||||
% \hspace{1em} \usebeamerfont{footline} \textrm{ \footnotesize{\insertframenumber/\inserttotalframenumber}}
|
||||
\hspace{2em} \usebeamerfont{footline} \texttt{ \footnotesize{\insertframenumber}}
|
||||
}
|
||||
\setcounter{framenumber}{0}
|
||||
}
|
||||
|
||||
% Frame title style
|
||||
\ifnum \isequal{\beamer@kenotom@title}{small}=0
|
||||
\setbeamerfont{frametitle}{family=\rmfamily,size=\large,series=\bfseries}
|
||||
@ -331,23 +326,28 @@
|
||||
|
||||
% Kenotom CoverFrame
|
||||
\newcommand{\CoverFrame}{{%
|
||||
\ifnum \isequal{\beamer@kenotom@aspectratio}{169}=0
|
||||
\SetBackroundImage{media/backroundCover169.png}
|
||||
\else
|
||||
\SetBackroundImage{media/backroundCover43.png}
|
||||
\fi
|
||||
\SetBackgroundImage[social]{media/BannerLink.png}{media/Ribon.png}{0.1}
|
||||
\begin{frame}
|
||||
|
||||
\begin{tikzpicture}[overlay,remember picture]
|
||||
% Logo
|
||||
\node[anchor=center, inner sep=0pt, yshift=0.25\paperheight] at (current page.center) {%
|
||||
\ifnum \isequal{\beamer@kenotom@theme}{dark}=0
|
||||
\includegraphics[width=\paperwidth]{media/LogoWhite.png}
|
||||
\else
|
||||
\includegraphics[width=\paperwidth]{media/Logo.png}
|
||||
\fi
|
||||
};%
|
||||
% Car
|
||||
\node[anchor=north, inner sep=0pt, yshift=0.16\paperheight] at (current page.center) {%
|
||||
\includegraphics[width=\paperwidth, keepaspectratio]{media/CarCover.png}
|
||||
};%
|
||||
\end{tikzpicture}
|
||||
\end{frame}
|
||||
}
|
||||
}
|
||||
|
||||
\newcommand{\TitleFrame}{{%
|
||||
\ifnum \isequal{\beamer@kenotom@aspectratio}{169}=0
|
||||
\SetBackroundImage{media/backroundTitlePage169.png}
|
||||
\else
|
||||
\SetBackroundImage{media/backroundTitlePage43.png}
|
||||
\fi
|
||||
\SetBackgroundImage{media/BannerLink.png}{media/Ribon.png}{0.4}
|
||||
\begin{frame}
|
||||
\vspace{0.15\textheight}
|
||||
\textcolor{TitleColor}{
|
||||
@ -367,12 +367,14 @@
|
||||
}
|
||||
|
||||
\newcommand{\BackCoverFrame}{{%
|
||||
\ifnum \isequal{\beamer@kenotom@aspectratio}{169}=0
|
||||
\SetBackroundImage{media/backroundBackCover169.png}
|
||||
\else
|
||||
\SetBackroundImage{media/backroundBackCover43.png}
|
||||
\fi
|
||||
\SetBackgroundImage[social]{media/BannerThankYou.png}{media/Ribon.png}{0.4}
|
||||
\begin{frame}
|
||||
\Vfill
|
||||
\begin{tikzpicture}[overlay,remember picture]
|
||||
\node[anchor=center, inner sep=0pt, yshift=0.04\paperheight] at (current page.center) {%
|
||||
\includegraphics[width=\paperwidth]{media/LogoDetails.png}
|
||||
};%
|
||||
\end{tikzpicture}
|
||||
\Vfill
|
||||
\AuthorName \\
|
||||
\AuthorMail \\
|
||||
@ -386,14 +388,14 @@
|
||||
}
|
||||
|
||||
\newenvironment{tickmarks}{%
|
||||
\SetGraphItemize{1.6ex}{media/tickmark1.png}
|
||||
\SetGraphItemize{1.6ex}{media/Tickmark.png}
|
||||
\begin{itemize}
|
||||
}{%
|
||||
\end{itemize}
|
||||
}
|
||||
|
||||
\newenvironment{bullets}{%
|
||||
\SetGraphItemize{1.3em}{media/bullet.png}
|
||||
\SetGraphItemize{1.3em}{media/Bullet.png}
|
||||
\begin{itemize}
|
||||
}{%
|
||||
\end{itemize}
|
||||
|
60
demo.aux
@ -1,60 +0,0 @@
|
||||
\relax
|
||||
\providecommand\hyper@newdestlabel[2]{}
|
||||
\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument}
|
||||
\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined
|
||||
\global\let\oldnewlabel\newlabel
|
||||
\gdef\newlabel#1#2{\newlabelxx{#1}#2}
|
||||
\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}}
|
||||
\AtEndDocument{\ifx\hyper@anchor\@undefined
|
||||
\let\newlabel\oldnewlabel
|
||||
\fi}
|
||||
\fi}
|
||||
\global\let\hyper@last\relax
|
||||
\gdef\HyperFirstAtBeginDocument#1{#1}
|
||||
\providecommand\HyField@AuxAddToFields[1]{}
|
||||
\providecommand\HyField@AuxAddToCoFields[2]{}
|
||||
\pgfsyspdfmark {pgfid1}{0}{17900937}
|
||||
\@writefile{nav}{\headcommand {\slideentry {0}{0}{1}{1/1}{}{0}}}
|
||||
\@writefile{nav}{\headcommand {\beamer@framepages {1}{1}}}
|
||||
\pgfsyspdfmark {pgfid8}{0}{17900937}
|
||||
\@writefile{nav}{\headcommand {\slideentry {0}{0}{2}{2/2}{}{0}}}
|
||||
\@writefile{nav}{\headcommand {\beamer@framepages {2}{2}}}
|
||||
\pgfsyspdfmark {pgfid15}{0}{17900937}
|
||||
\@writefile{toc}{\beamer@sectionintoc {1}{Introduction}{3}{0}{1}}
|
||||
\@writefile{nav}{\headcommand {\beamer@sectionpages {1}{2}}}
|
||||
\@writefile{nav}{\headcommand {\beamer@subsectionpages {1}{2}}}
|
||||
\@writefile{nav}{\headcommand {\sectionentry {1}{Introduction}{3}{Introduction}{0}}}
|
||||
\@writefile{nav}{\headcommand {\slideentry {1}{0}{1}{3/3}{}{0}}}
|
||||
\@writefile{nav}{\headcommand {\beamer@framepages {3}{3}}}
|
||||
\pgfsyspdfmark {pgfid22}{0}{17900937}
|
||||
\@writefile{toc}{\beamer@sectionintoc {2}{Some \LaTeX {} Examples}{4}{0}{2}}
|
||||
\@writefile{nav}{\headcommand {\beamer@sectionpages {3}{3}}}
|
||||
\@writefile{nav}{\headcommand {\beamer@subsectionpages {3}{3}}}
|
||||
\@writefile{nav}{\headcommand {\sectionentry {2}{Some \LaTeX {} Examples}{4}{Some \LaTeX {} Examples}{0}}}
|
||||
\@writefile{toc}{\beamer@subsectionintoc {2}{1}{Mathematics}{4}{0}{2}}
|
||||
\@writefile{nav}{\headcommand {\beamer@subsectionpages {4}{3}}}
|
||||
\@writefile{nav}{\headcommand {\beamer@subsectionentry {0}{2}{1}{4}{Mathematics}}}
|
||||
\@writefile{nav}{\headcommand {\slideentry {2}{1}{1}{4/4}{Mathematics}{0}}}
|
||||
\@writefile{nav}{\headcommand {\beamer@framepages {4}{4}}}
|
||||
\pgfsyspdfmark {pgfid29}{0}{17900937}
|
||||
\@writefile{toc}{\beamer@subsectionintoc {2}{2}{Tables}{5}{0}{2}}
|
||||
\@writefile{nav}{\headcommand {\beamer@subsectionpages {4}{4}}}
|
||||
\@writefile{nav}{\headcommand {\beamer@subsectionentry {0}{2}{2}{5}{Tables}}}
|
||||
\newlabel{tab:widgets}{{1}{5}{Tables}{Doc-Start}{}}
|
||||
\@writefile{snm}{\beamer@slide {tab:widgets}{5}}
|
||||
\@writefile{nav}{\headcommand {\slideentry {2}{2}{1}{5/5}{Tables}{0}}}
|
||||
\@writefile{nav}{\headcommand {\beamer@framepages {5}{5}}}
|
||||
\pgfsyspdfmark {pgfid36}{0}{17900937}
|
||||
\@writefile{toc}{\beamer@subsectionintoc {2}{3}{Figures}{6}{0}{2}}
|
||||
\@writefile{nav}{\headcommand {\beamer@subsectionpages {5}{5}}}
|
||||
\@writefile{nav}{\headcommand {\beamer@subsectionentry {0}{2}{3}{6}{Figures}}}
|
||||
\newlabel{fig:your-figure}{{1}{6}{Figures}{Doc-Start}{}}
|
||||
\@writefile{snm}{\beamer@slide {fig:your-figure}{6}}
|
||||
\@writefile{nav}{\headcommand {\slideentry {2}{3}{1}{6/6}{Figures}{0}}}
|
||||
\@writefile{nav}{\headcommand {\beamer@framepages {6}{6}}}
|
||||
\@writefile{nav}{\headcommand {\beamer@partpages {1}{6}}}
|
||||
\@writefile{nav}{\headcommand {\beamer@subsectionpages {6}{6}}}
|
||||
\@writefile{nav}{\headcommand {\beamer@sectionpages {4}{6}}}
|
||||
\@writefile{nav}{\headcommand {\beamer@documentpages {6}}}
|
||||
\@writefile{nav}{\headcommand {\gdef \inserttotalframenumber {6}}}
|
||||
\gdef \@abspage@last{6}
|
5
demo.toc
@ -1,5 +0,0 @@
|
||||
\beamer@sectionintoc {1}{Introduction}{3}{0}{1}
|
||||
\beamer@sectionintoc {2}{Some \LaTeX {} Examples}{4}{0}{2}
|
||||
\beamer@subsectionintoc {2}{1}{Mathematics}{4}{0}{2}
|
||||
\beamer@subsectionintoc {2}{2}{Tables}{5}{0}{2}
|
||||
\beamer@subsectionintoc {2}{3}{Figures}{6}{0}{2}
|
@ -5,9 +5,9 @@
|
||||
% author: Christos Choutouridis <c.choutouridis@kenotom.com>
|
||||
%
|
||||
|
||||
\documentclass[10pt,aspectratio=169,xcolor={table,dvipsnames},t]{beamer}
|
||||
\documentclass[11pt,aspectratio=169,xcolor={table,dvipsnames},t]{beamer}
|
||||
|
||||
\usetheme[aspectratio=169,backround=ribon,theme=classic]{Kenotom}
|
||||
\usetheme[backround=ribon,theme=clasic,navigation=enable]{Kenotom}
|
||||
|
||||
|
||||
\newcommand{\Title}{Your Presentation}
|
||||
@ -23,11 +23,13 @@
|
||||
\begin{document}
|
||||
|
||||
% Uncomment the following if you want the fancy kenotom cover page
|
||||
%\CoverFrame
|
||||
\CoverFrame
|
||||
|
||||
% Title frame
|
||||
\TitleFrame
|
||||
|
||||
\BeginCountingFrames % Exclude first frames from frame counting
|
||||
|
||||
% Uncomment the following lines for an automatically generated outline.
|
||||
\begin{frame}{Outline}
|
||||
\vspace{2em}
|
||||
@ -35,7 +37,6 @@
|
||||
\Vfill
|
||||
\end{frame}
|
||||
|
||||
\BeginCountingFrames % Exclude first frames from frame counting
|
||||
|
||||
\section{Introduction}
|
||||
|
||||
|
BIN
media/BannerLink.png
Normal file
After Width: | Height: | Size: 8.3 KiB |
BIN
media/BannerLogoLink.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
media/BannerThankYou.png
Normal file
After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 213 B After Width: | Height: | Size: 213 B |
Before Width: | Height: | Size: 11 MiB After Width: | Height: | Size: 11 MiB |
BIN
media/Logo.png
Normal file
After Width: | Height: | Size: 94 KiB |
BIN
media/LogoDetails.png
Normal file
After Width: | Height: | Size: 84 KiB |
BIN
media/LogoWhite.png
Normal file
After Width: | Height: | Size: 51 KiB |
Before Width: | Height: | Size: 1.0 MiB After Width: | Height: | Size: 1.0 MiB |
BIN
media/Social.png
Normal file
After Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.1 MiB |
Before Width: | Height: | Size: 1.2 MiB |
Before Width: | Height: | Size: 9.0 MiB |
Before Width: | Height: | Size: 3.2 MiB |
Before Width: | Height: | Size: 3.6 MiB |
Before Width: | Height: | Size: 54 KiB |
Before Width: | Height: | Size: 65 KiB |
Before Width: | Height: | Size: 784 KiB |
Before Width: | Height: | Size: 795 KiB |
Before Width: | Height: | Size: 1.1 MiB |
Before Width: | Height: | Size: 1.1 MiB |
Before Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 179 KiB |
Before Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 7.8 KiB |
Before Width: | Height: | Size: 9.0 KiB |
Before Width: | Height: | Size: 80 KiB |
Before Width: | Height: | Size: 7.8 KiB |
87
media/svg/BannerLink.svg
Normal file
@ -0,0 +1,87 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="2.645in"
|
||||
height="0.30899999in"
|
||||
viewBox="0 0 67.183001 7.8485999"
|
||||
version="1.1"
|
||||
id="svg1043"
|
||||
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
|
||||
sodipodi:docname="BannerLink.svg"
|
||||
inkscape:export-filename="/home/hoo2/Documents/kenotom/kenotom_template/media/BannerLink.png"
|
||||
inkscape:export-xdpi="300"
|
||||
inkscape:export-ydpi="300">
|
||||
<defs
|
||||
id="defs1037" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.8"
|
||||
inkscape:cx="133.56112"
|
||||
inkscape:cy="-20.611202"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="g5631"
|
||||
showgrid="false"
|
||||
units="in"
|
||||
inkscape:window-width="1718"
|
||||
inkscape:window-height="797"
|
||||
inkscape:window-x="1946"
|
||||
inkscape:window-y="62"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata1040">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-289.15138)">
|
||||
<g
|
||||
style="stroke-width:0.99966729;opacity:0.92"
|
||||
id="g5631"
|
||||
transform="matrix(1.0003328,0,0,1.0003328,-319.94692,259.82324)">
|
||||
<g
|
||||
id="g841">
|
||||
<path
|
||||
d="m 321.04063,29.318384 v 0 c -0.20991,0 -0.42016,0.06535 -0.60008,0.174527 -0.17992,0.119938 -0.32985,0.283317 -0.43991,0.47937 -0.10019,0.196054 -0.16016,0.425168 -0.16016,0.653896 v 5.230403 0 c 0,0.228729 0.06,0.457843 0.16016,0.653897 0.11006,0.196052 0.25999,0.359431 0.43991,0.47937 0.17992,0.109174 0.39017,0.174526 0.60008,0.174526 h 52.82 v 0 c 0.2099,0 0.41981,-0.06535 0.60008,-0.174526 0.17991,-0.119939 0.32984,-0.283318 0.43991,-0.47937 0.0998,-0.196054 0.15981,-0.425168 0.15981,-0.653897 v -5.230403 0 0 c 0,-0.228728 -0.06,-0.457842 -0.15981,-0.653896 -0.11007,-0.196053 -0.26,-0.359432 -0.43991,-0.47937 -0.18027,-0.109175 -0.39018,-0.174527 -0.60008,-0.174527 z"
|
||||
style="fill:#46ad9e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.36813611"
|
||||
id="path933"
|
||||
inkscape:connector-curvature="0" />
|
||||
<text
|
||||
y="34.73061"
|
||||
x="323.11642"
|
||||
id="text939"
|
||||
style="font-variant:normal;font-weight:bold;font-size:4.23015833px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans-Bold;writing-mode:lr-tb;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35266039">
|
||||
<tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Arial;-inkscape-font-specification:'Arial Bold';letter-spacing:2.11596251px;stroke-width:0.35266039"
|
||||
id="tspan937"
|
||||
sodipodi:role="line"
|
||||
x="323.11642"
|
||||
y="34.73061"
|
||||
dx="0">kenotom.com</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.6 KiB |
129
media/svg/BannerLogoLink.svg
Normal file
After Width: | Height: | Size: 14 KiB |
206
media/svg/BannerThankYou.svg
Normal file
@ -0,0 +1,206 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="3.01in"
|
||||
height="0.30899999in"
|
||||
viewBox="0 0 76.454002 7.8485999"
|
||||
version="1.1"
|
||||
id="svg1043"
|
||||
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
|
||||
sodipodi:docname="BannerThankYou.svg"
|
||||
inkscape:export-filename="/home/hoo2/Documents/kenotom/kenotom_template/media/BannerThankYou.png"
|
||||
inkscape:export-xdpi="300"
|
||||
inkscape:export-ydpi="300">
|
||||
<defs
|
||||
id="defs1037">
|
||||
<clipPath
|
||||
id="clipPath947"
|
||||
clipPathUnits="userSpaceOnUse">
|
||||
<path
|
||||
style="clip-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path945"
|
||||
d="m 757.984,509.64 1.134,-0.056 1.077,-0.17 1.077,-0.284 1.02,-0.368 0.964,-0.454 0.907,-0.567 0.851,-0.623 0.793,-0.737 0.709,-0.766 0.624,-0.85 0.567,-0.936 0.453,-0.963 0.369,-1.021 0.283,-1.049 0.17,-1.105 0.057,-1.134 -0.057,-1.134 -0.17,-1.105 -0.283,-1.049 -0.369,-1.021 -0.453,-0.963 -0.567,-0.908 -0.624,-0.85 -0.709,-0.794 -0.793,-0.708 -0.851,-0.652 -0.907,-0.567 -0.964,-0.454 -1.02,-0.368 -1.077,-0.284 -1.077,-0.17 -1.134,-0.056 -0.567,0.028 -0.567,0.028 -0.539,0.085 -0.567,0.085 -0.51,0.114 -0.538,0.17 -0.511,0.17 -0.51,0.198 -0.765,0.425 2.239,3.572 0.17,-0.085 0.312,-0.142 0.312,-0.085 0.34,-0.113 0.34,-0.057 0.312,-0.056 0.34,-0.057 0.369,-0.029 h 0.34 l 0.708,0.029 0.681,0.113 0.652,0.17 0.623,0.227 0.596,0.284 0.567,0.34 0.51,0.397 0.482,0.453 0.453,0.482 0.397,0.51 0.34,0.567 0.284,0.595 0.226,0.624 0.171,0.652 0.113,0.68 0.028,0.709 -0.028,0.709 -0.113,0.68 -0.171,0.652 -0.226,0.624 -0.284,0.623 -0.34,0.539 -0.397,0.538 -0.453,0.482 -0.482,0.454 -0.51,0.397 -0.567,0.34 -0.596,0.283 -0.623,0.227 -0.652,0.17 -0.681,0.113 -0.708,0.029 -0.624,-0.029 -0.595,-0.085 -0.567,-0.113 -0.567,-0.198 -0.539,-0.227 -0.51,-0.255 -0.482,-0.312 -0.482,-0.34 -0.425,-0.397 -0.397,-0.425 -0.34,-0.425 -0.312,-0.482 -0.283,-0.511 -0.227,-0.538 -0.198,-0.567 -0.142,-0.567 -0.057,-0.624 -4.223,-0.113 0.141,1.587 0.227,0.936 0.312,0.907 0.397,0.85 0.453,0.822 0.511,0.766 0.595,0.737 0.624,0.68 0.68,0.624 0.765,0.567 0.766,0.481 0.85,0.426 0.85,0.368 0.907,0.284 0.936,0.226 0.964,0.114 z" />
|
||||
</clipPath>
|
||||
<clipPath
|
||||
id="clipPath955"
|
||||
clipPathUnits="userSpaceOnUse">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path953"
|
||||
d="M 0,0 H 22.054 V 22.195 H 0 Z" />
|
||||
</clipPath>
|
||||
<linearGradient
|
||||
id="linearGradient961"
|
||||
spreadMethod="pad"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="-2"
|
||||
x2="18"
|
||||
y1="25"
|
||||
x1="3"
|
||||
gradientTransform="matrix(0.99966731,0,0,0.99966731,762.18364,-685.52454)">
|
||||
<stop
|
||||
id="stop957"
|
||||
offset="0"
|
||||
style="stop-opacity:1;stop-color:#46ad9e" />
|
||||
<stop
|
||||
id="stop959"
|
||||
offset="1"
|
||||
style="stop-opacity:1;stop-color:#46ad9e" />
|
||||
</linearGradient>
|
||||
<clipPath
|
||||
id="clipPath971"
|
||||
clipPathUnits="userSpaceOnUse">
|
||||
<path
|
||||
style="clip-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path969"
|
||||
d="M 0,0.028 H 960.094 V 539.999 H 0 Z" />
|
||||
</clipPath>
|
||||
<clipPath
|
||||
id="clipPath981"
|
||||
clipPathUnits="userSpaceOnUse">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path979"
|
||||
d="m 747.213,487.956 h 10.8 v 10.688 h -10.8 z" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.8"
|
||||
inkscape:cx="117.47565"
|
||||
inkscape:cy="-11.249034"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="g5631"
|
||||
showgrid="false"
|
||||
units="in"
|
||||
inkscape:window-width="1718"
|
||||
inkscape:window-height="797"
|
||||
inkscape:window-x="1946"
|
||||
inkscape:window-y="62"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata1040">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-289.15138)">
|
||||
<g
|
||||
style="opacity:0.92000002;stroke-width:0.99966729"
|
||||
id="g5631"
|
||||
transform="matrix(1.0003328,0,0,1.0003328,-319.94692,259.82324)">
|
||||
<g
|
||||
style="stroke-width:0.99966729"
|
||||
id="g1246"
|
||||
transform="translate(11.559822,-0.30974218)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path933"
|
||||
style="fill:#46ad9e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35266042"
|
||||
d="m 321.04063,29.964178 v 0 c -0.20991,0 -0.42016,0.05997 -0.60008,0.160162 -0.17992,0.110066 -0.32985,0.259997 -0.43991,0.439913 -0.10019,0.179917 -0.16016,0.390173 -0.16016,0.600075 v 4.799895 0 c 0,0.209902 0.06,0.420158 0.16016,0.600075 0.11006,0.179916 0.25999,0.329847 0.43991,0.439914 0.17992,0.100188 0.39017,0.160161 0.60008,0.160161 h 52.82 v 0 c 0.2099,0 0.41981,-0.05997 0.60008,-0.160161 0.17991,-0.110067 0.32984,-0.259998 0.43991,-0.439914 0.0998,-0.179917 0.15981,-0.390173 0.15981,-0.600075 v -4.799895 0 0 c 0,-0.209902 -0.06,-0.420158 -0.15981,-0.600075 -0.11007,-0.179916 -0.26,-0.329847 -0.43991,-0.439913 -0.18027,-0.100189 -0.39018,-0.160162 -0.60008,-0.160162 z" />
|
||||
<g
|
||||
style="stroke-width:0.99966729"
|
||||
transform="matrix(0.35277777,0,0,-0.35277777,47.510932,209.31428)"
|
||||
id="g935">
|
||||
<text
|
||||
id="text939"
|
||||
style="font-variant:normal;font-weight:bold;font-size:11.99100018px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans-Bold;writing-mode:lr-tb;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99966729"
|
||||
transform="matrix(1,0,0,-1,787.209,493.795)">
|
||||
<tspan
|
||||
style="stroke-width:0.99966729"
|
||||
id="tspan937"
|
||||
sodipodi:role="line"
|
||||
y="0"
|
||||
x="0 14.077434 30.157366 45.337971 61.417904 76.694435 86.874794 101.15607 117.33193">THANK YOU</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:0.99966729"
|
||||
id="g941"
|
||||
transform="matrix(0.35277777,0,0,-0.35277777,56.900388,209.13436)">
|
||||
<g
|
||||
style="stroke-width:0.99966729"
|
||||
id="g943"
|
||||
clip-path="url(#clipPath947)">
|
||||
<g
|
||||
style="stroke-width:0.99966729"
|
||||
id="g949"
|
||||
transform="translate(747.014,487.446)">
|
||||
<g
|
||||
style="stroke-width:0.99966729"
|
||||
id="g951"
|
||||
clip-path="url(#clipPath955)">
|
||||
<path
|
||||
d="M 0,0 H 22.054 V 22.195 H 0 Z"
|
||||
style="fill:url(#linearGradient961);stroke:none;stroke-width:0.99966729"
|
||||
id="path963"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:0.99966729"
|
||||
id="g965"
|
||||
transform="matrix(0.35277777,0,0,-0.35277777,56.900388,209.13436)">
|
||||
<g
|
||||
style="stroke-width:0.99966729"
|
||||
id="g967"
|
||||
clip-path="url(#clipPath971)">
|
||||
<path
|
||||
d="m 757.984,498.643 -6.803,-10.659 c -3.543,2.268 -5.754,6.151 -5.839,10.347 z"
|
||||
style="fill:#818285;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99966729"
|
||||
id="path973"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
style="stroke-width:0.99966729"
|
||||
id="g975">
|
||||
<g
|
||||
style="stroke-width:0.99966729"
|
||||
id="g977" />
|
||||
<g
|
||||
style="stroke-width:0.99966729"
|
||||
id="g987">
|
||||
<g
|
||||
clip-path="url(#clipPath981)"
|
||||
id="g985"
|
||||
style="opacity:0.7;stroke-width:0.99966729">
|
||||
<path
|
||||
d="m 757.984,498.643 -6.775,-10.659 c -1.332,0.851 -2.466,1.928 -3.373,3.175 l -0.623,0.964 10.686,6.52 z"
|
||||
style="fill:#929395;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99966729"
|
||||
id="path983"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 8.8 KiB |
Before Width: | Height: | Size: 31 MiB After Width: | Height: | Size: 31 MiB |
Before Width: | Height: | Size: 192 KiB After Width: | Height: | Size: 114 KiB |
Before Width: | Height: | Size: 98 KiB After Width: | Height: | Size: 100 KiB |
840
media/svg/LogoWhite.svg
Normal file
After Width: | Height: | Size: 128 KiB |
Before Width: | Height: | Size: 98 KiB After Width: | Height: | Size: 90 KiB |
Before Width: | Height: | Size: 343 KiB |
Before Width: | Height: | Size: 344 KiB |
Before Width: | Height: | Size: 31 MiB |
Before Width: | Height: | Size: 3.3 MiB |
Before Width: | Height: | Size: 445 KiB |
Before Width: | Height: | Size: 3.3 MiB |
Before Width: | Height: | Size: 3.3 MiB |
Before Width: | Height: | Size: 347 KiB |
Before Width: | Height: | Size: 348 KiB |
Before Width: | Height: | Size: 348 KiB |
Before Width: | Height: | Size: 348 KiB |
92
media/svg/colors.svg
Normal file
@ -0,0 +1,92 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="210mm"
|
||||
height="297mm"
|
||||
viewBox="0 0 210 297"
|
||||
version="1.1"
|
||||
id="svg973"
|
||||
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
|
||||
sodipodi:docname="colors.svg">
|
||||
<defs
|
||||
id="defs967" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.7"
|
||||
inkscape:cx="699.87897"
|
||||
inkscape:cy="638.34417"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1011"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="32"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata970">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<rect
|
||||
style="opacity:1;fill:#1a2222;fill-opacity:1;stroke:none;stroke-width:7.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect1518"
|
||||
width="144.3869"
|
||||
height="43.845234"
|
||||
x="40.82143"
|
||||
y="66.434525"
|
||||
ry="0.80180919"
|
||||
rx="0.80180919" />
|
||||
<rect
|
||||
style="opacity:1;fill:#7fd5c9;fill-opacity:1;stroke:none;stroke-width:7.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect1518-5"
|
||||
width="144.3869"
|
||||
height="43.845238"
|
||||
x="38.931549"
|
||||
y="157.90477"
|
||||
ry="0.80180919"
|
||||
rx="0.80180919" />
|
||||
<rect
|
||||
style="opacity:1;fill:#cbd9d9;fill-opacity:1;stroke:none;stroke-width:7.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect1518-5-7"
|
||||
width="144.3869"
|
||||
height="43.845238"
|
||||
x="40.821434"
|
||||
y="22.589294"
|
||||
ry="0.80180919"
|
||||
rx="0.80180919" />
|
||||
<rect
|
||||
style="opacity:1;fill:#0d2227;fill-opacity:1;stroke:none;stroke-width:7.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect1518-8"
|
||||
width="144.3869"
|
||||
height="43.845238"
|
||||
x="228.29762"
|
||||
y="68.702377"
|
||||
ry="0.80180919"
|
||||
rx="0.80180919" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 149 KiB |
@ -1,8 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="256" height="256" viewBox="0 0 256 256" xml:space="preserve">
|
||||
|
||||
<defs>
|
||||
</defs>
|
||||
<g style="stroke: none; stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: none; fill-rule: nonzero; opacity: 1;" transform="translate(1.4065934065934016 1.4065934065934016) scale(2.81 2.81)" >
|
||||
<path d="M 83.254 90 H 59.253 c -1.104 0 -2 -0.896 -2 -2 V 54.696 c 0 -1.104 0.896 -2 2 -2 h 9.42 l 1.158 -8.979 H 59.253 c -1.104 0 -2 -0.896 -2 -2 v -8.286 c 0 -3.571 0.874 -8.319 8.432 -8.319 l 4.873 -0.002 v -7.801 c -1.871 -0.154 -4.797 -0.32 -8.015 -0.32 c -9.2 0 -14.693 5.666 -14.693 15.156 v 9.572 c 0 1.104 -0.896 2 -2 2 h -9.208 v 8.979 h 9.208 c 1.104 0 2 0.896 2 2 V 88 c 0 1.104 -0.896 2 -2 2 H 6.747 C 3.027 90 0 86.974 0 83.253 V 6.747 C 0 3.026 3.027 0 6.747 0 h 76.507 C 86.974 0 90 3.026 90 6.747 v 76.506 C 90 86.974 86.974 90 83.254 90 z M 61.253 86 h 22.001 C 84.769 86 86 84.768 86 83.253 V 6.747 C 86 5.232 84.769 4 83.254 4 H 6.747 C 5.232 4 4 5.232 4 6.747 v 76.506 C 4 84.768 5.232 86 6.747 86 H 43.85 V 56.696 h -9.208 c -1.104 0 -2 -0.896 -2 -2 V 41.717 c 0 -1.104 0.896 -2 2 -2 h 9.208 v -7.572 c 0 -11.816 7.163 -19.156 18.693 -19.156 c 4.763 0 8.981 0.356 10.278 0.529 c 0.994 0.132 1.736 0.98 1.736 1.982 v 11.608 c 0 1.104 -0.895 2 -1.999 2 l -6.873 0.003 c -3.995 0 -4.433 1.383 -4.433 4.319 v 6.286 h 10.853 c 0.575 0 1.122 0.248 1.502 0.679 c 0.38 0.432 0.555 1.006 0.481 1.577 l -1.674 12.979 c -0.129 0.997 -0.978 1.744 -1.983 1.744 h -9.179 V 86 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.8 KiB |
@ -1,9 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="256" height="256" viewBox="0 0 256 256" xml:space="preserve">
|
||||
|
||||
<defs>
|
||||
</defs>
|
||||
<g style="stroke: none; stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: none; fill-rule: nonzero; opacity: 1;" transform="translate(1.4065934065934016 1.4065934065934016) scale(2.81 2.81)" >
|
||||
<path d="M 23.575 89.924 H 1.407 V 28.439 h 22.167 V 89.924 z M 5.835 85.496 h 13.311 v -52.63 H 5.835 V 85.496 z M 12.491 25.072 C 5.603 25.072 0 19.467 0 12.576 c 0 -6.893 5.603 -12.5 12.491 -12.5 c 6.887 0 12.491 5.608 12.491 12.5 C 24.982 19.467 19.379 25.072 12.491 25.072 z M 12.491 4.504 c -4.446 0 -8.063 3.621 -8.063 8.072 c 0 4.448 3.617 8.068 8.063 8.068 c 4.446 0 8.063 -3.619 8.063 -8.068 C 20.554 8.125 16.937 4.504 12.491 4.504 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round" />
|
||||
<path d="M 90 89.924 H 67.846 V 59.962 c 0 -8.75 -1.048 -12.915 -7.001 -12.915 c -6.14 0 -8.422 3.371 -8.422 12.439 v 30.438 H 30.269 V 28.439 h 21.439 v 4.046 c 3.376 -3.03 8.363 -5.459 14.806 -5.459 C 87.21 27.025 90 41.883 90 56.417 V 89.924 z M 72.274 85.496 h 13.298 v -29.08 c 0 -15.411 -3.189 -24.963 -19.059 -24.963 c -7.81 0 -12.864 4.328 -14.819 8.035 l -0.623 1.181 h -3.792 v -7.803 H 34.697 v 52.63 h 13.298 v -26.01 c 0 -4.614 0 -16.867 12.85 -16.867 c 11.429 0 11.429 11.282 11.429 17.343 V 85.496 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 1.7 KiB |