Draft import

This commit is contained in:
Giulio 2022-03-13 16:51:01 +01:00
commit e777f2a173
6 changed files with 389 additions and 0 deletions

140
beamerthemevu.sty Normal file
View File

@ -0,0 +1,140 @@
\DeclareOption{Lato}{
\setsansfont[Ligatures=TeX]{Lato}
\setmonofont[Ligatures=TeX]{Lato}
}
\ProcessOptions
\RequirePackage{tikz}
\RequirePackage[overlay, absolute]{textpos}
\usetikzlibrary{arrows.meta, shapes.misc}
\definecolor{VUBlack}{RGB}{0,0,0}
\definecolor{VUWhite}{RGB}{255,255,255}
\definecolor{VUBlue}{RGB}{0,129,202}
\definecolor{VUGray}{RGB}{124,124,124}
\definecolor{VUPurple}{RGB}{240,0,240}
\setbeamercolor{normal text}{fg=VUGray, bg=white}
\setbeamercolor{background canvas}{bg=VUWhite}
\setbeamercolor{section in toc}{parent={normal text}}
\setbeamercolor{subsection in toc}{parent={normal text}}
\setbeamercolor{item}{parent={normal text}}
\setbeamercolor{block title}{parent={normal text}, fg=VUWhite, bg=VUBlack}
\setbeamercolor{block body}{parent={normal text}, fg=VUWhite, bg=VUGray}
\setbeamercolor{block title example}{parent={normal text}, fg=VUWhite, bg=VUGray}
\setbeamercolor{block body example}{parent={normal text}, fg=VUWhite, bg=VUBlack}
\setbeamercolor{logo}{parent={normal text}, bg=VUWhite}
\setbeamercolor{subtitle}{parent={normal text}}
\setbeamercolor{institute in head/foot}{parent={normal text}}
\setbeamercolor{headline}{parent={normal text}, bg=VUBlack}
\setbeamercolor{qed symbol}{parent={normal text}}
\setbeamercolor{title page}{fg=VUBlack, bg=VUWhite}
\setbeamercolor{subtitle}{fg=VUGray,bg=VUWhite}
\setbeamercolor{footline}{fg=VUWhite, bg=VUBlue}
\setbeamercolor{footnote}{fg=VUWhite, bg=VUGray}
\setbeamercolor{frametitle}{fg=VUWhite, bg=VUBlack}
\setbeamercolor{canvas}{fg=VUGray, bg=VUWhite}
\setbeamercolor{prefooter}{fg=VUWhite, bg=VUGray}
\setbeamercolor{section page}{fg=VUBlack, bg=VUWhite}
\setbeamerfont{footline}{size=\normalsize}
\setbeamerfont{footnote}{size=\normalsize}
\setbeamerfont{institute in head/foot}{size=\small}
\setbeamerfont{navigation symbols}{size=\small}
\setbeamerfont{section page}{size=\huge}
\setbeamerfont{title}{size=\huge}
\setbeamerfont{frametitle}{size=\huge}
\setbeamerfont{subtitle}{size=\Large}
\setbeamerfont{author}{size=\Large}
\setbeamerfont{date}{size=\Large}
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{itemize items}[circle]
\setbeamertemplate{footline}{
\begin{beamercolorbox}[ht=0.75cm,wd=\paperwidth]{footline}
\includegraphics[height=0.75cm]{images/footer}
\hfill
\vbox to 0.75cm{\vfil\hbox{Course name or presentation title - \#\insertframenumber/\inserttotalframenumber}\vfil}%\
\hspace{0.5cm}
\end{beamercolorbox}
}
\setbeamertemplate{footnote}{
\begin{beamercolorbox}[ht=0.75cm,wd=\paperwidth]{footnote}
\end{beamercolorbox}
}
\setbeamertemplate{title page}{
\begin{beamercolorbox}[wd=0.5\paperwidth,ht=0.4\paperheight,dp=8ex,left]{logo}
\vfill
\includegraphics[height=2.5cm]{images/logo}
\vfill
\end{beamercolorbox}
\begin{textblock*}{12cm}(0.5\paperwidth,3cm)
\begin{beamercolorbox}[wd=0.5\paperwidth]{title page}
\usebeamerfont{title}\usebeamercolor{title}\inserttitle%
\end{beamercolorbox}%
\end{textblock*}
\begin{textblock*}{12cm}(0.5\paperwidth,5cm)
\begin{beamercolorbox}[wd=0.5\paperwidth]{subtitle}
\usebeamerfont{subtitle}\usebeamercolor{subtitle}\insertsubtitle%
\end{beamercolorbox}%
\end{textblock*}
}
\setbeamertemplate{frametitle}{
\begin{beamercolorbox}[wd=\paperwidth,dp=1ex,leftskip=0.5cm,rightskip=0.5cm]{frametitle}
\vfill
\usebeamerfont{frametitle}\insertframetitle
\vfill
\end{beamercolorbox}
}
\setbeamertemplate{block begin}{
\vskip\baselineskip
\begin{beamercolorbox}[wd=\textwidth, ht=0.5cm, dp=0.2cm, leftskip=0.2cm]{block title}%
\usebeamerfont*{block title}{\rule[-0.4ex]{0mm}{2ex}\insertblocktitle}%
\end{beamercolorbox}%
{\nointerlineskip\vskip-0.5pt}%
\usebeamerfont{block body}%
\begin{beamercolorbox}[wd=\textwidth, leftskip=0.2cm, dp=0.2cm]{block body}%
\vskip-.75ex\vbox{}%
}
\setbeamertemplate{block end}{
\end{beamercolorbox}
\vspace*{.25cm}
}
\setbeamertemplate{block example begin}{
\vskip\baselineskip
\begin{beamercolorbox}[wd=\textwidth, ht=0.5cm, dp=0.2cm, leftskip=0.2cm]{block title example}%
\usebeamerfont*{block title example}{\rule[-0.4ex]{0mm}{2ex}\insertblocktitle}%
\end{beamercolorbox}%
{\nointerlineskip\vskip-0.5pt}%
\usebeamerfont{block body example}%
\begin{beamercolorbox}[wd=\textwidth, leftskip=0.2cm, dp=0.2cm]{block body example}%
\vskip-.75ex\vbox{}%
}
\setbeamertemplate{block example end}{
\end{beamercolorbox}
\vspace*{.25cm}
}
\AtBeginSection[]{
\begin{frame}
\vfill
\centering
\begin{beamercolorbox}[center]{section page}
\usebeamerfont{section page}\insertsectionhead\par%
\end{beamercolorbox}
\vfill
\end{frame}
}

31
compile.sh Executable file
View File

@ -0,0 +1,31 @@
#!/usr/bin/env bash
LOGO="images/logo"
FOOTER="images/footer"
DPI=600
clean() {
rm -rf *.aux *.nav *.toc *.log *.snm *.out *.vrb _minted*
}
convert_images() {
if [ ! -f "${LOGO}.png" ]; then
convert -density ${DPI} ${LOGO}.svg ${LOGO}.png
fi
if [ ! -f "${FOOTER}.png" ]; then
convert -density ${DPI} ${FOOTER}.svg ${FOOTER}.png
fi
}
main() {
clean
convert_images
xelatex --shell-escape "${1}"
xelatex --shell-escape "${1}"
clean
echo "Done, output is ${1%.*}.pdf"
}
main "${1}"

BIN
example.pdf Normal file

Binary file not shown.

134
example.tex Normal file
View File

@ -0,0 +1,134 @@
\documentclass[aspectratio=169]{beamer}
\usepackage[utf8]{inputenc}
\usepackage{listings}
\usepackage{minted}
\usetheme{vu}
\title{My title here}
\subtitle{Name Surname}
%\date{\today}
\begin{document}
\frame[plain]{\maketitle}
\begin{frame}{Table of contents}
\tableofcontents
\end{frame}
\section{Section title}
\begin{frame}{One or two lines here are fine! Do your best to use meaningful titles}
Ypu can use paragraphs or nested enumerations
\begin{itemize}
\item We have plenty bullet styles available!
\begin{itemize}
\item[$\circ$] And you can go as deep as yout want
\begin{itemize}
\item[$\blacksquare$] But do not abuse this feature, otherwise you will lose clarity
\end{itemize}
\end{itemize}
\item And of course do not push too much text in a single slides, people hate reading :)
\end{itemize}
\end{frame}
\begin{frame}{Pros, cons or short concise lists}
\begin{columns}[T] % align columns
\begin{column}{.48\textwidth}
Pros
\begin{itemize}
\item Generic good design comment
\item Second generic good written comment
\item Generic good charts
\item Whatever
\end{itemize}
\end{column}
\hfill
\begin{column}{.48\textwidth}
Cons
\begin{itemize}
\item Product pitch, not research
\item Closed source
\item Manipulated benchmarks
\item I do not like the authors
\end{itemize}
\end{column}
\end{columns}
\end{frame}
\begin{frame}[fragile]{This is a non-highlighted code sample}
\begin{lstlisting}
fn fib (n: i32) -> i32 {
if n <= 0 {
return 0;
} else if n== 1{
return 1;
} else {
return fib (n-1) + fib(n-2);
}
}
\end{lstlisting}
\end{frame}
\begin{frame}[fragile]{This is a highlighted code sample}
\begin{minted}{rust}
fn fib (n: i32) -> i32 {
if n <= 0 {
return 0;
} else if n== 1{
return 1;
} else {
return fib (n-1) + fib(n-2);
}
}
\end{minted}
\end{frame}
\begin{frame}{This is an example enumeration with math!}
\begin{enumerate}
\item Here you can see an enumeration
\item It has items
\item The items are numbered
\end{enumerate}
\[
f(x)=\sum_{i=0}^\infty \frac{f^{(i)}(x_0)}{i!}(x-x_0)^i
\]
\end{frame}
\begin{frame}{Put your not funny quote here}
\begin{quote}[Oscar Wilde]
I have nothing to declare except my genius.\end{quote}
\end{frame}
\begin{frame}{Example slide with Title}
\begin{example}
The demonstration is flawed.
\end{example}
\begin{solution}
Quit your researcher job.
\end{solution}
\footnotetext[1]{A test footnote in the first column}
\end{frame}
\begin{frame}[plain]{Plain frame with title}
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Ut purus elit, vestibulum ut,
placerat ac, adipiscing vitae, felis. Curabitur dictum gravida mauris. Nam arcu libero,
nonummy eget, consectetuer id, vulputate a, magna. Donec vehicula augue eu neque.
Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis
egestas. Mauris ut leo. Cras viverra metus rhoncus sem. Nulla et lectus vestibulum
urna fringilla ultrices. Phasellus eu tellus sit amet tortor gravida placerat. Integer
sapien est, iaculis in, pretium quis, viverra ac, nunc. Praesent eget sem vel leo ultrices
bibendum. Aenean faucibus. Morbi dolor nulla, malesuada eu, pulvinar at, mollis ac,
nulla. Curabitur auctor semper nulla. Donec varius orci eget risus. Duis nibh mi,
congue eu, accumsan eleifend, sagittis quis, diam. Duis eget orci sit amet orci
dignissim rutrum.
\end{frame}
\section{Questions?}
\begin{frame}{Keep in touch!}
Add some other text here with your contact
\end{frame}
\end{document}

83
images/footer.svg Executable file
View File

@ -0,0 +1,83 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 997.9 296.4" enable-background="new 0 0 997.9 296.4" xml:space="preserve">
<g>
<path fill="#0080C9" d="M772.9,140.2h-2.5v10.7h1.6c2.9,0,4.9-0.6,6-1.9c1.1-1.3,1.7-2.7,1.7-4.3c0-1.4-0.5-2.5-1.4-3.3
C777.5,140.6,775.6,140.2,772.9,140.2z"/>
<path fill="#0080C9" d="M663.5,87.2c1.1-1.3,1.7-2.7,1.7-4.3c0-1.4-0.4-2.5-1.3-3.3c-0.9-0.8-2.7-1.2-5.5-1.2h-2.5v10.7h1.6
C660.4,89.1,662.4,88.4,663.5,87.2z"/>
<path fill="#0080C9" d="M785.7,202h-2.4v10.7h1.6c2.9,0,4.9-0.6,6-1.9c1.1-1.3,1.6-2.7,1.6-4.3c0-1.4-0.4-2.5-1.3-3.3
C790.3,202.4,788.5,202,785.7,202z"/>
<path fill="#0080C9" d="M413.6,130.7c1.1-3.8,3.1-11.1,7.5-19.9c-4.7,6.3-7.2,11-9.6,16.9C412.7,128.5,413.4,129.3,413.6,130.7z"/>
<path fill="#0080C9" d="M428.9,52c-11,12-27.2,38.2-30.6,73.8C404,107.9,413.1,75.4,428.9,52z"/>
<path fill="#0080C9" d="M542.9,86.4c-36,8.9-64.4,29.8-85.2,49.5C470.8,125.7,512.5,97.2,542.9,86.4z"/>
<polygon fill="#0080C9" points="623.4,217.7 633.9,217.7 628.7,204.2 "/>
<polygon fill="#0080C9" points="849.8,217.7 860.3,217.7 855,204.2 "/>
<path fill="#0080C9" d="M0,0v296.4h997.9V0H0z M894,135.5h7.1v33.8H894V135.5z M865.5,135.5h21.7v4.7h-14.6v9.4h12.1v4.7h-12.1
v10.3h15.7v4.8h-22.8V135.5z M831.6,135.5h31.3v4.7h-12.1v29.2h-7v-29.2h-12.1V135.5z M822.1,135.5h7v33.8h-7V135.5z M796.3,137.4
c2-1.8,4.8-2.7,8.4-2.7c2.7,0,5.8,0.4,9.2,1.2v5.4c-3.5-1.3-6.3-1.9-8.3-1.9c-1.7,0-3,0.4-3.9,1.1c-0.9,0.7-1.3,1.6-1.3,2.7
c0,0.8,0.3,1.5,0.8,2.2c0.5,0.7,1.8,1.6,4,2.8l2.5,1.4c3.7,2.1,6.1,3.9,7.2,5.4c1,1.6,1.5,3.3,1.5,5.2c0,2.8-1.1,5.1-3.2,7.1
c-2.1,2-5.5,2.9-10.1,2.9c-2.7,0-5.9-0.4-9.6-1.1v-5.8c2.6,1.1,4.6,1.8,5.9,2c1.3,0.2,2.5,0.3,3.6,0.3c2,0,3.5-0.4,4.4-1.3
c1-0.9,1.5-1.9,1.5-3.2c0-0.9-0.3-1.8-0.8-2.6c-0.5-0.7-1.9-1.7-4-2.9l-2.3-1.3c-3.3-1.8-5.5-3.5-6.6-5c-1.2-1.5-1.8-3.3-1.8-5.4
C793.3,141.4,794.3,139.2,796.3,137.4z M754.3,149.6v4.7h-12.1v10.3h15.7v4.8h-22.8v-33.8h21.7v4.7h-14.6v9.4H754.3z M716.5,73.7
h21.7v4.7h-14.6v9.4h12.1v4.7h-12.1v10.3h15.7v4.8h-22.8V73.7z M731.4,135.5l-12.1,33.8h-7l-12.5-33.8h7.5l9.7,26.2l9.4-26.2H731.4
z M696.7,109.6c0.8,0,1.5-0.2,2.2-0.5c0.6-0.3,1.1-0.8,1.5-1.5c0.4-0.7,0.6-2.1,0.6-4.3V73.7h7v28.9c0,3.2-0.4,5.5-1.1,6.9
c-0.7,1.5-1.9,2.6-3.5,3.5c-1.6,0.9-3.6,1.3-6.3,1.3c-1.9,0-4-0.3-6.1-0.8l-0.1-5C692.8,109.2,694.7,109.6,696.7,109.6z
M681.3,73.7h7v33.9h-7V73.7z M620.6,73.7l9.7,26.2l9.4-26.2h5l-12.1,33.9h-7L613,73.7H620.6z M625.4,163.8
c1.3,1.2,2.9,1.8,4.9,1.8c2,0,3.6-0.6,4.8-1.8c1.2-1.2,1.8-3.5,1.8-7v-21.3h6.1v20.8c0,3.9-0.5,6.7-1.5,8.4c-1,1.7-2.4,3-4.3,4
c-1.9,1-4.2,1.5-7.1,1.5c-2.8,0-5.2-0.4-7.2-1.4c-2-0.9-3.6-2.3-4.8-4c-1.2-1.8-1.8-4.6-1.8-8.6v-20.7h7.1v20.8
C623.5,160.1,624.1,162.5,625.4,163.8z M155.4,231.3h-32.9L64,73.2h35.1l45.4,122.3l44-122.3h23.6L155.4,231.3z M355.4,170.3
c0,18.3-2.3,31.4-6.9,39.4c-4.6,7.9-11.2,14.2-19.9,18.8c-8.7,4.6-19.7,6.8-33,6.8c-13.1,0-24.4-2.1-33.8-6.4
c-9.4-4.2-16.8-10.6-22.3-18.9c-5.5-8.4-8.2-21.7-8.2-40V73.2h32.9v97c0,17.5,3,29.2,8.9,34.9c5.9,5.7,13.7,8.6,23.1,8.6
c9.3,0,16.8-2.8,22.3-8.4c5.5-5.6,8.3-16.5,8.3-32.6V73.2h28.6V170.3z M498,196.9c-4,5.7-12.4,7.3-20.4,3
c-3.5-1.8-7.5-4.9-11.1-9.3c3.3,5.1,3.1,12.4,4.3,16.7c0.5,2.4,1.9,3.1,3.7,3.3c3.3,0.7,3.3,2.3,2.6,6.6c-0.7,3.7-3,8.7-5.6,14.5
h-9.3c-0.9-0.7-2.6-3.5-1.6-5.6c1.4-2.6,5.8,1.9,7.5,0.5c1.6-1.2,2.8-3.7,3.1-5.8c0.2-1,0.2-2.4,0.2-2.8c-0.2-0.4-1.9-1.3-3.1-1.4
c-7.2-1.9-10.3-8.1-12.6-14.7c-0.4,0.7-0.7,1.4-1,2.2c-0.9,4.4-1.2,8.2,1.9,10c1.7,0.7,1.7,1.6,0.9,3.8c-1.6,3.1-5.9,8-9.1,13.8
h-9.6c-1-0.9-3.1-4.2-1.6-5.7c1.8-1.8,4.4,1.2,6.6,0.9c1.7-0.2,4-2.1,5-4.4c0.5-0.9,1.2-2.8,1.2-3.3c-0.2-0.7-1.2-1.9-2.4-3.2
c-4.6-4.4-5.2-9.8-6.1-15.7c-0.1-0.7-0.1-1.4-0.1-2.2c-5.4,4-10.4,6.6-14.9,8.1c0,0.5,0,0.9,0,1.2c0.7,2.3,1.6,4.4,2.4,4.9
c2.6,1,2.6,2.1,2.6,6.5c0,4.2-0.9,9.3-3.2,12.9h-9.4c-1.2-1.7-2.6-4.3-1.4-5.7c1.4-1.8,5.1,1.6,7.3,0.7c1.4-0.5,1.9-1.7,1.9-3.1
c0.2-1,0.2-2.6-0.4-3.1c-0.5-0.5-1.4-1.1-2.8-1.8c-3.5-1.4-5.6-4.4-8-8.2c-0.3-0.5-0.7-1.2-1.2-1.9c-0.2,0.3-0.4,0.5-0.6,0.9
c-0.7,1-1.7,2.8-2.4,4.7c-0.2,0.8-0.7,2.1-0.9,3.3c-0.4,1.2-1,3-1.8,4.2c-0.7,1.2-1.4,3.1-2.3,4.4c-0.7,1.6-1.2,3.1-2.4,5.7H394
c-1-0.9-2.3-4.2-1.2-5.6c1.2-1.8,4.9,1,6.5,0.7c1.7-0.2,2.8-1.2,3.1-2.5c0.5-1.4,0.9-2.8,1-4.5c0-1.7,0.2-3.7,0.2-7.7
c0-4.9-0.2-7.5-0.9-12.9c0,0,1.4-1.3,3.9-3.5c0,0,0-0.1-0.1-0.1l5.7-5c2.3-2.1,5-4.4,8-7.1h4.9c9.1-0.8,16.6-4.5,24.1-5.3
c0.9-0.2,1.8-0.3,2.8-0.3c1,0,2.1,0.2,3.1,0.3c1.8,0.3,3.6,0.7,5.4,1.6c3.3,1.7,5.8,3.8,10.1,8.7c3,3.1,6.3,6.4,9.4,8
c5.1,2.6,10.6,2.6,14.1-1.6c1.9-1.9,3.1-5.9,1.9-9.6c-1.2-3.7-4.7-6.3-10.5-6.1c-3.8,8.6-16.1,4.9-14.8-5.6c3,3.2,4.4,4.9,8.7,5.1
v-1.6c-2.3-0.3-3.8-1-5.8-2.8c1.7-2.1,7.9-5.6,11.7,1.7c7-0.5,12,3,14,8.2C500.6,187.6,500.6,192.5,498,196.9z M583.7,77
c-0.2,2.3-0.9,3.5-4.5,4.4c-11.2,1.9-16.2,4.4-33,11.5c8.2-2.4,15-3.8,19.2-3.8c2.1,0,2.6,0.2,2.6,1.9c0,2.3-1.2,3.7-3.3,4.4
c-9.8,3.1-23.3,9.4-35.8,14.8c12.8-3.8,19-3.7,21.7-3.8c1.7-0.4,4.2-0.4,3.3,2.6c-0.4,2.6-1.2,3.8-6.3,5.2
c-18.7,4.7-30.2,9.6-50.8,19.9c21.8-6.3,36.1-7.2,45.7-7.7c4.7,0,6.8,0,6.3,2.6c-0.2,2.4-0.7,3.7-4.9,4.9c-13.3,3.8-30,7-43.8,12.9
c6.1-1,12.2-2.1,15.7-1.6c3,0.3,4.2,1.1,3.7,3.5c-0.5,2.6-2.4,4.4-5.6,4.5c-11.9,1.1-15.5,2.3-29.8,6.6c2.8,0.2,2.8,1.9,1.6,3.5
c-1.2,1.8-3.5,3.1-5.6,3.1c-4.4-0.2-13.1,0.5-19.7,4.9c-3.7,2.8-5.9-3.7-3.7-6.3c5.3-5.8,20.8-14.3,29.1-20.1
c-15.5,7.5-30.2,14.3-44.1,26.9c-4.7,4.4-7,2.4-7.5,0.5c-0.3-2.3-0.7-3.8-2.8-2.4c-1.7,0.9-3,2.1-5.9,4.5l0,0l-5,4.5v0l-18.7,16.8
c0,0,0,0,0,0l-1.2,1.1v0l0,0v-4.3l15.8-14.2v-4.1l-9,7.9v-4.5l13.1-11.7v-11.4l11-0.9l-8.7-3c4.7-3.7,9.1-0.9,10.6,0.5
c0.2-0.7,0.5-3.8-2.4-5.6c-1.4-0.7-3-1.2-5.6-1c-4-3.2-8.1-1.6-10.2,0.3c-3.3-4.3-7.5-4.8-7.5-4.8l3.3,7.3l-5.6-1.7l4.2,5.8
c-2.4,3.8-5.3,8.5-7.5,17.2c-1.1,3.3-2.1,10.1-1.8,16c0,0.5,0.1,0.8,0.1,1.3c-5.3-12-11.1-31-11.1-52.9c0-14.1,2.3-34.7,12.7-56.5
c10.8-23.2,24.1-36.1,34-45c4.9-4.2,7.3-5.6,9.9-6.1c1.8-0.2,3.5,0.5,4.2,2.6c1.2,4.7,1.1,5.4-0.2,7.3
c-2.9,4.9-11.2,14.3-15.9,26.7c9.1-10.5,8.7-9.3,14.1-14.5c1.2-1.6,3.6-2.8,4.9,0c1.4,3.1,1.2,3.8-0.5,6.6
c-1.4,2.4-8.6,9.1-16.2,23.4c3.6-4.4,5.8-6.8,6.8-7.3c1.2-1.2,2.8-3.1,4.6-0.5c2.2,3.1,1,3.5,0.2,5.6c-0.7,1.9-7.9,13.6-13.1,23.5
c3.7-4.4,4.2-5.4,6.1-6.3c1-0.5,1.7,0.2,2.3,1.4c0.7,1.6,0.7,3.7,0.2,4.9c-4.9,10-7.7,11.3-12.9,28.8c4.2-5.2,4.7-5.8,6.6-8
c1.2-0.9,3.1-2.6,4.5-0.2c1,1.2,1.6,3.3,0.5,6.1c-2.5,5.9-3,6.4-7.5,16.7c1.6-0.4,2.1-0.1,3,1.5c4-4.8,7.9-9,11.3-12.5
c12.9-13.1,24.8-23.5,42.6-35.8C511.8,82,528.9,74,540.8,69.1c5.9-2.1,10.8-3.8,13.1-4c2.3-0.3,4.2,0,4.2,2.1
c0,1.9-0.5,3.1-1.4,3.7c-3.1,1.9-5.6,2.6-14.3,7c14-3.1,30.2-4.9,37.4-4C582.1,74,584.2,73.8,583.7,77z M421.6,146.1
c0-0.7,0.5-1.4,1.2-1.4c0.7,0,1.2,0.7,1.2,1.4c0,0.7-0.5,1.2-1.2,1.2C422.1,147.3,421.6,146.8,421.6,146.1z M639.2,231.2l-3.5-9
h-14l-3.5,9H613l13.2-33.9h7.1l13.2,33.9H639.2z M649.3,73.7h12.7c2.6,0,4.6,0.3,5.9,1c1.4,0.7,2.4,1.6,3.2,3
c0.8,1.3,1.2,2.8,1.2,4.5c0,2-0.6,3.9-1.7,5.6c-1.1,1.8-2.8,3.1-4.8,4l11.1,15.8h-8.6l-8.4-13.8h-3.9v13.8h-6.6V73.7z M678.9,135.5
v33.8h-6.3L657,146.3v23.1h-5.7v-33.8h6.2l15.6,23.1v-23.1H678.9z M684.9,231.2h-6.5v-25.6l-8.3,23.3h-5.7l-8.1-23.6v25.9h-5.5
v-33.9h9.3l8.2,23.8l8.4-23.8h8.2V231.2z M688.1,135.5h7v33.8h-7V135.5z M711.5,229.1c-2.1,2-5.5,2.9-10.1,2.9
c-2.7,0-5.9-0.4-9.6-1.1v-5.8c2.6,1.1,4.6,1.8,5.9,2c1.3,0.2,2.5,0.3,3.6,0.3c2,0,3.4-0.4,4.4-1.3c1-0.9,1.5-1.9,1.5-3.2
c0-0.9-0.3-1.8-0.8-2.6c-0.5-0.7-1.9-1.7-4-2.9l-2.3-1.2c-3.3-1.8-5.5-3.5-6.6-5c-1.2-1.5-1.8-3.3-1.8-5.4c0-2.5,1-4.7,2.9-6.5
c2-1.8,4.8-2.7,8.4-2.7c2.7,0,5.8,0.4,9.2,1.2v5.4c-3.5-1.3-6.3-2-8.3-2c-1.7,0-3,0.4-3.9,1.1c-0.9,0.8-1.3,1.6-1.3,2.7
c0,0.8,0.3,1.5,0.8,2.2c0.5,0.7,1.9,1.6,4,2.8l2.4,1.3c3.7,2.1,6.1,3.9,7.1,5.5c1,1.5,1.5,3.3,1.5,5.2
C714.7,224.8,713.6,227.2,711.5,229.1z M745.7,202h-12.1v29.2h-7V202h-12.1v-4.7h31.3V202z M771.2,231.2h-22.8v-33.9h21.7v4.7
h-14.6v9.4h12.1v4.7h-12.1v10.3h15.7V231.2z M770.4,155.6v13.8h-6.6v-33.8h12.7c2.6,0,4.6,0.3,5.9,1c1.4,0.6,2.4,1.6,3.2,2.9
c0.8,1.3,1.2,2.8,1.2,4.5c0,2-0.6,3.9-1.7,5.6c-1.1,1.8-2.8,3.1-4.9,4l11.1,15.8h-8.6l-8.4-13.8H770.4z M795.5,231.2l-8.4-13.8
h-3.9v13.8h-6.6v-33.9h12.7c2.6,0,4.6,0.3,5.9,1c1.4,0.7,2.4,1.6,3.2,3c0.8,1.3,1.2,2.8,1.2,4.5c0,2-0.6,3.8-1.7,5.6
c-1.1,1.8-2.8,3.1-4.9,4l11.1,15.8H795.5z M836.7,222.6c-1.2,2.6-3,4.7-5.3,6.3c-2.4,1.5-5.6,2.3-9.7,2.3h-14v-33.9h14.6
c3.9,0,6.9,0.6,9.1,1.9c2.2,1.3,3.9,3.1,5.2,5.5c1.3,2.4,1.9,5.4,1.9,8.8C838.5,216.9,837.9,220,836.7,222.6z M865.6,231.2l-3.5-9
h-14l-3.5,9h-5.1l13.2-33.9h7.1l13.2,33.9H865.6z M910.3,231.2h-6.5v-25.6l-8.3,23.3h-5.7l-8.1-23.6v25.9h-5.5v-33.9h9.3l8.2,23.8
l8.4-23.8h8.2V231.2z M935.2,140.2h-12.1v29.2H916v-29.2h-12.1v-4.7h31.3V140.2z"/>
<path fill="#0080C9" d="M826.4,203.4c-1.5-1-3.9-1.4-7.4-1.4h-4.2v24.4h5.3c2.7,0,4.8-0.4,6.3-1.3c1.4-0.9,2.6-2.3,3.4-4.3
c0.8-2,1.3-4.3,1.3-6.8c0-2.4-0.4-4.5-1.2-6.4C829,205.8,827.9,204.4,826.4,203.4z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.8 KiB

1
images/logo.svg Executable file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 162.39 64"><defs><style>.cls-1{fill:#0089cf;}</style></defs><title>logo-VU</title><g id="Laag_2" data-name="Laag 2"><g id="Laag_1-2" data-name="Laag 1"><path class="cls-1" d="M112.86,36.83a.38.38,0,1,1,.75,0,.37.37,0,0,1-.75,0"/><path class="cls-1" d="M136.68,48.56a4,4,0,0,0-4.26-2.5,2.06,2.06,0,0,0-3.57-.53,3,3,0,0,0,1.75.85v.48c-1.33,0-1.75-.59-2.66-1.55-.38,3.2,3.36,4.32,4.53,1.71a3,3,0,0,1,3.2,1.86,3,3,0,0,1-.58,2.93c-1.07,1.28-2.77,1.28-4.32.48a12.09,12.09,0,0,1-2.88-2.45,10.48,10.48,0,0,0-3.09-2.66,5.81,5.81,0,0,0-1.66-.48,6.34,6.34,0,0,0-1-.11,4.35,4.35,0,0,0-.85.08c-2.28.25-4.59,1.37-7.36,1.62h-1.49L110,50.45,108.27,52l0,0-1.19,1.08a26,26,0,0,1,.26,3.94c0,1.23,0,1.82,0,2.35a5.53,5.53,0,0,1-.32,1.38,1,1,0,0,1-1,.75c-.48.1-1.6-.75-2-.22s.06,1.44.37,1.71h3.14c.38-.8.54-1.28.75-1.75s.48-1,.69-1.34a6.61,6.61,0,0,0,.54-1.28c.05-.37.21-.75.26-1a6.89,6.89,0,0,1,.75-1.44c.05-.1.12-.18.17-.26a6.2,6.2,0,0,1,.36.58A5.57,5.57,0,0,0,113.55,59a3.36,3.36,0,0,1,.85.53,1.41,1.41,0,0,1,.11,1,.94.94,0,0,1-.59,1c-.7.26-1.81-.75-2.24-.21s.06,1.22.43,1.75H115a7.83,7.83,0,0,0,1-3.95c0-1.33,0-1.65-.8-2a3.15,3.15,0,0,1-.74-1.49c0-.08,0-.22,0-.37A16.5,16.5,0,0,0,119,52.75c0,.21,0,.44,0,.66.26,1.82.47,3.47,1.87,4.8a3.16,3.16,0,0,1,.74,1,3.39,3.39,0,0,1-.37,1,2.32,2.32,0,0,1-1.54,1.33c-.69.1-1.49-.8-2-.26s.16,1.49.49,1.75h2.93c1-1.75,2.29-3.25,2.78-4.21.26-.7.26-1-.27-1.17-1-.54-.85-1.71-.59-3a4.29,4.29,0,0,1,.3-.66c.72,2,1.67,3.91,3.86,4.49a2,2,0,0,1,1,.43,5.4,5.4,0,0,1-.06.85,3,3,0,0,1-1,1.76c-.53.42-1.86-1-2.29-.16a1.65,1.65,0,0,0,.49,1.71h2.82a23.63,23.63,0,0,0,1.71-4.42c.21-1.33.21-1.82-.8-2a1.13,1.13,0,0,1-1.12-1c-.37-1.33-.32-3.57-1.33-5.11a11.29,11.29,0,0,0,3.4,2.83c2.46,1.33,5,.85,6.23-.91a4.71,4.71,0,0,0,.48-3.78"/><path class="cls-1" d="M123.89,33.74c6.35-6,15-12.41,26-15.13-9.27,3.3-22,12-26,15.13m-18.12-3.09c1-10.88,6-18.87,9.33-22.54-4.85,7.14-7.62,17.05-9.33,22.54m4.63,1.49a1.13,1.13,0,0,0-.64-.9,21.38,21.38,0,0,1,2.93-5.17,32.53,32.53,0,0,0-2.29,6.07m50.74-17.37C159,14.51,154,15,149.73,16c2.67-1.33,3.41-1.54,4.37-2.13a1.25,1.25,0,0,0,.43-1.12c0-.64-.58-.74-1.28-.64a23.35,23.35,0,0,0-4,1.22,83.8,83.8,0,0,0-15,8.1,82.42,82.42,0,0,0-13,10.92c-1,1-2.21,2.36-3.45,3.81-.28-.48-.44-.59-.93-.46,1.38-3.15,1.54-3.31,2.3-5.11a1.84,1.84,0,0,0-.16-1.87c-.43-.75-1-.22-1.39.05-.58.69-.75.85-2,2.45,1.6-5.33,2.45-5.76,3.94-8.8a2,2,0,0,0-.05-1.49c-.16-.37-.37-.59-.69-.42-.59.27-.75.58-1.87,1.91,1.6-3,3.79-6.61,4-7.19s.64-.75-.05-1.71c-.54-.8-1-.22-1.39.16a13,13,0,0,0-2.07,2.24,45.27,45.27,0,0,1,5-7.14,1.6,1.6,0,0,0,.16-2c-.37-.85-1.12-.48-1.49,0a37.25,37.25,0,0,0-4.32,4.42c1.44-3.78,3.95-6.66,4.85-8.15.38-.59.43-.8.05-2.24a1.14,1.14,0,0,0-1.28-.8,6.91,6.91,0,0,0-3,1.87,40.42,40.42,0,0,0-10.39,13.75A39.93,39.93,0,0,0,103,32.89,40.94,40.94,0,0,0,106.38,49c0-.13,0-.25,0-.39a15.93,15.93,0,0,1,.53-4.9,16.14,16.14,0,0,1,2.3-5.26l-1.29-1.77,1.71.53-1-2.24a3.64,3.64,0,0,1,2.28,1.47,2.33,2.33,0,0,1,3.1-.08,3.05,3.05,0,0,1,1.71.32,1.58,1.58,0,0,1,.75,1.7,2.45,2.45,0,0,0-3.25-.16l2.66.91-3.36.26v3.47l-4,3.56v1.37l2.74-2.41v1.26L106.4,51v1.32l6.08-5.47h0L114,45.51h0a10.88,10.88,0,0,1,1.81-1.39c.64-.43.75.05.85.74s.85,1.18,2.3-.16c4.26-3.84,8.74-5.91,13.48-8.2-2.56,1.75-7.3,4.36-8.9,6.13-.69.79,0,2.77,1.12,1.92a11,11,0,0,1,6-1.5,2.25,2.25,0,0,0,1.71-1c.37-.48.37-1-.48-1.07,4.37-1.33,5.49-1.7,9.12-2a1.69,1.69,0,0,0,1.7-1.39c.16-.74-.21-1-1.12-1.06a19.43,19.43,0,0,0-4.8.47c4.21-1.81,9.33-2.77,13.38-3.94,1.28-.37,1.44-.75,1.49-1.49s-.48-.8-1.92-.8a57.16,57.16,0,0,0-14,2.35c6.29-3.15,9.8-4.64,15.51-6.07,1.54-.43,1.81-.8,1.92-1.61.26-.9-.48-.9-1-.8a23.52,23.52,0,0,0-6.62,1.17c3.79-1.65,7.94-3.57,10.93-4.53a1.32,1.32,0,0,0,1-1.34c0-.53-.16-.59-.79-.59a23.47,23.47,0,0,0-5.87,1.18c5.12-2.18,6.66-2.93,10.07-3.52,1.12-.27,1.33-.64,1.38-1.33.16-1-.47-.91-1.22-1"/><path class="cls-1" d="M106.41,51.06v1.28l.37-.34c-.09-.36-.16-.72-.23-1.08Z"/><path d="M52.62,13H63V43.51q0,8.28,2.81,11a10.06,10.06,0,0,0,7.28,2.69,9.37,9.37,0,0,0,7-2.66q2.61-2.66,2.61-10.26V13h9V43.56q0,8.64-2.17,12.39a15.17,15.17,0,0,1-6.27,5.9A22.29,22.29,0,0,1,72.87,64a25.71,25.71,0,0,1-10.63-2,16.1,16.1,0,0,1-7-5.95q-2.59-3.95-2.59-12.59Z"/><polygon points="18.41 62.76 0 13 11.06 13 25.33 51.5 39.17 13 46.6 13 28.76 62.76 18.41 62.76"/></g></g></svg>

After

Width:  |  Height:  |  Size: 4.2 KiB