update cv to add PwC experience

This commit is contained in:
2025-10-27 12:47:26 +01:00
parent 6da98b4758
commit ce2703eece
9 changed files with 783 additions and 246 deletions

317
cv.tex
View File

@@ -1,4 +1,4 @@
%============================================================================%
%============See ================================================================%
%
% DOCUMENT DEFINITION
%
@@ -8,6 +8,7 @@
\documentclass[10pt,A4]{article}
\usepackage{blindtext}
\usepackage{accsupp}
%----------------------------------------------------------------------------------------
% ENCODING
%----------------------------------------------------------------------------------------
@@ -245,18 +246,33 @@
% param 1: name of the skill / tech / etc.
% param 2: level (for example in years)
% param 3: percent, values range from 0 to 1
% param 4: (optional) FontAwesome icon name (e.g., Python, Js, Html5, Css3, etc.) OR SVG path (e.g., img/cpp.svg)
% param 5: (optional) SVG height if param 4 is an SVG path (e.g., 0.9em)
\newcolumntype{L}[1]{>{\raggedright\arraybackslash}p{#1}}
\newcolumntype{C}[1]{>{\centering\arraybackslash}p{#1}}
\newcolumntype{R}[1]{>{\raggedleft\arraybackslash}p{#1}}
\newcommand{\cvskill}[3] {
\newcommand{\cvskill}[5][] {
\begin{tabularx}{\textwidth}{Xr@{}}
\textcolor{black}{\textbf{#1}} & \textcolor{maincol}{#2}\\
\ifthenelse{\isempty{#1}}{}{
% Check if it's an SVG file (contains .svg)
\IfSubStr{#1}{.svg}{
% It's an SVG file path
\ifthenelse{\isempty{#5}}{
\raisebox{0pt}[\height][0pt]{\includesvg[height=0.9em,pretex=\relax]{#1}}\hspace{0.3em}
}{
\raisebox{0pt}[\height][0pt]{\includesvg[height=#5,pretex=\relax]{#1}}\hspace{0.3em}
}
}{
% It's a FontAwesome icon name
\textcolor{maincol}{\csname fa#1\endcsname}\hspace{0.3em}
}
}\textcolor{black}{\textbf{#2}} & \textcolor{maincol}{#3}\\
\end{tabularx}\\[-16pt]
\hspace{4pt}
\begin{tikzpicture}[scale=1,rounded corners=2pt,very thin]
\fill [lightcol] (0,0) rectangle (1\linewidth, 0.15);
\fill [maincol] (0,0) rectangle (#3\linewidth, 0.15);
\fill [maincol] (0,0) rectangle (#4\linewidth, 0.15);
\end{tikzpicture}
}
@@ -284,11 +300,13 @@
% param 1: time-frame i.e. Sep 14 - Jan 15 etc.
% param 2: event name (job position etc.)
% param 3: Customer, Employer, Industry
% param 4: Short description
% param 5: work done (optional)
% param 6: technologies include (optional)
% param 7: achievements (optional)
\newcommand{\cvevent}[7] {
% param 4: logo file path (optional, e.g., img/eth.svg)
% param 5: logo height (optional, e.g., 0.7em, defaults to 0.9em)
% param 6: logo vertical offset (optional, e.g., -.1\height, defaults to -.3\height)
% param 7: Short description
% param 8: work done (optional)
% param 9: technologies include (optional)
\newcommand{\cvevent}[9] {
% we wrap this part in a parbox, so title and description are not separated on a pagebreak
% if you need more control on page breaks, remove the parbox
@@ -299,22 +317,40 @@
\fill[black] (-0.5em -0.3em -0.15em, 4pt) circle [radius=0.3em];
\end{tikzpicture}
\hspace{-0.3em}\textcolor{black}{\textbf{#2}} & \colorbox{maincol}{\makebox[0.25\mpwidth]{\textcolor{white}{#1}}} \\
\textcolor{maincol}{\textbf{#3}} & \\
% Add logo if provided (before company name)
\ifthenelse{\isempty{#4}}{}{
\ifthenelse{\isempty{#5}}{
\ifthenelse{\isempty{#6}}{
\raisebox{-.3\height}{\includesvg[height=0.9em,pretex=\relax]{#4}}\hspace{0.5em}
}{
\raisebox{#6}{\includesvg[height=0.9em,pretex=\relax]{#4}}\hspace{0.5em}
}
}{
\ifthenelse{\isempty{#6}}{
\raisebox{-.3\height}{\includesvg[height=#5,pretex=\relax]{#4}}\hspace{0.5em}
}{
\raisebox{#6}{\includesvg[height=#5,pretex=\relax]{#4}}\hspace{0.5em}
}
}
}
\textcolor{maincol}{\textbf{#3}}
& \\
\end{tabular*}\\
\ifthenelse{\isempty{#4}}{}{
\cvtext{#4}\\
\ifthenelse{\isempty{#7}}{}{
\cvtext{#7}\\
}
}
\ifthenelse{\isempty{#5}}{}{
\ifthenelse{\isempty{#8}}{}{
\vspace{4pt}
{#5}
{#8}
}
\vspace{0pt}
}
%----------------------------------------------------------------------------------------
% CV EVENT WITH DETAILED SUBPOINTS
%----------------------------------------------------------------------------------------
@@ -323,19 +359,38 @@
% param 1: time-frame i.e. Sep 14 - Jan 15 etc.
% param 2: event name (job position etc.)
% param 3: Customer, Employer, Industry
% param 4: List of detailed subpoints (use \cvsubpoint{title}{description} for each)
\newcommand{\cveventdetailed}[4] {
\parbox{\mpwidth}{
\begin{tabular*}{1\mpwidth}{p{0.72\mpwidth} r}
\begin{tikzpicture}[remember picture, overlay]
\fill[black] (-0.5em -0.3em -0.15em, 4pt) circle [radius=0.3em];
\end{tikzpicture}
\hspace{-0.3em}\textcolor{black}{\textbf{#2}} & \colorbox{maincol}{\makebox[0.25\mpwidth]{\textcolor{white}{#1}}} \\
\textcolor{maincol}{\textbf{#3}} & \\
\end{tabular*}\\[4pt]
% param 4: logo file path (optional, e.g., img/pwc.svg)
% param 5: logo height (optional, e.g., 0.9em, defaults to 0.9em)
% param 6: logo vertical offset (optional, e.g., -.1\height, defaults to -.3\height)
% param 7: List of detailed subpoints (use \cvsubpoint{title}{description} for each)
\newcommand{\cveventdetailed}[7] {
\begin{tabular*}{1\mpwidth}{p{0.72\mpwidth} r}
\begin{tikzpicture}[remember picture, overlay]
\fill[black] (-0.5em -0.3em -0.15em, 4pt) circle [radius=0.3em];
\end{tikzpicture}
\hspace{-0.3em}\textcolor{black}{\textbf{#2}} & \colorbox{maincol}{\makebox[0.25\mpwidth]{\textcolor{white}{#1}}} \\
% Add logo if provided (before company name)
\ifthenelse{\isempty{#4}}{}{
\ifthenelse{\isempty{#5}}{
\ifthenelse{\isempty{#6}}{
\raisebox{-.3\height}{\includesvg[height=0.9em,pretex=\relax]{#4}}\hspace{0.5em}
}{
\raisebox{#6}{\includesvg[height=0.9em,pretex=\relax]{#4}}\hspace{0.5em}
}
}{
\ifthenelse{\isempty{#6}}{
\raisebox{-.3\height}{\includesvg[height=#5,pretex=\relax]{#4}}\hspace{0.5em}
}{
\raisebox{#6}{\includesvg[height=#5,pretex=\relax]{#4}}\hspace{0.5em}
}
}
}
\textcolor{maincol}{\textbf{#3}}
& \\
\end{tabular*}\\[4pt]
#7
#4
}
\vspace{6pt}
}
@@ -344,7 +399,7 @@
% param 2: detailed description (separate bullet points with \item)
\newcommand{\cvsubpoint}[2]{
\vspace{3pt}
\textcolor{black}{\textbf{#1}}\\[-20pt]
\textcolor{black}{\textbf{#1}}\\[-18pt]
\begin{itemize}
\setlength{\itemsep}{2pt}
\setlength{\parskip}{0pt}
@@ -407,22 +462,21 @@
\begin{document}
\columnratio{0.31}
\setlength{\columnsep}{2.2em}
\setlength{\columnseprule}{4pt}
\setlength{\columnseprule}{0pt}
\colseprulecolor{lightcol}
\begin{paracol}{2}
\begin{leftcolumn}
%---------------------------------------------------------------------------------------
% META IMAGE
%----------------------------------------------------------------------------------------
%\includegraphics[width=\linewidth]{untitled.jpg} %trimming relative to image size
\begin{tikzpicture}[remember picture]
\clip ($(current page text area.north east)!0.06!(current page text area.south east)!0.12!(current page text area.north west)$)
circle (0.5\linewidth) node {\includegraphics[width=\linewidth]{img/alexander.jpg}};
\begin{center}
\begin{tikzpicture}
\clip (0,0) circle (0.5\linewidth);
\node at (0,0) {\includegraphics[width=\linewidth]{img/alexander.jpg}};
\end{tikzpicture}
\end{center}
\vspace{0.5em}
\cvsection{Contact}\\[-0.5em]
\iconemail{Envelope}{14}{alexander@bocken.org}{alexander@bocken.org}{black}\\[6pt]
@@ -438,22 +492,6 @@
%\vfill\null
%\cvqrcode{0.7}
%---------------------------------------------------------------------------------------
% META SKILLS
%----------------------------------------------------------------------------------------
\cvsection{Soft Skills}\\[-0.8em]
\vspace{-1.2em}
\begin{itemize}
\leftskip-1.8em
\itemsep-0.2em
\item[] Stong analytical capabilities
\item[] Excellent at presentations (EN, DE)
\item[] Work well in teams
\item[] Quick learner
\item[] Focused
\item[] Adaptable
\item[] Self-starter
\end{itemize}
%---------------------------------------------------------------------------------------
% LANGUAGES
@@ -464,12 +502,12 @@
\cvskill{German}{mother tongue}{1}\\
\cvskill{Swiss German}{Baslerdütsch}{1}\\
\cvskill{English}{fluent}{1}\\
\cvskill{Japanese}{beginner (N5)}{0.2}\\
\end{minipage}
%---------------------------------------------------------------------------------------
% ACHIEVEMENTS
%----------------------------------------------------------------------------------------
%\newpage
\cvsection{Achievements}
\vspace{-1.8em}
\cvmetaevent
@@ -479,7 +517,7 @@
\cvmetaevent
{Abitur}
{Best of year}
{Achieved an overall grade of 1.1}
{Achieved an overall grade of 1.1 (German grading scale)}
\cvmetaevent
{Jugend gründet}
{7\textsuperscript{th} place }
@@ -487,14 +525,60 @@
\cvmetaevent
{Technik-Akademie Tübingen}
{}
{Nominated by my school for extraordinary work to participate in the ``Technik-Akademie'' for gifted children in Tübingen in 2013.}
{Participant of ``Technik-Akademie'' for gifted children in Tübingen in 2013.}
\vspace{1em}
\newpage
%---------------------------------------------------------------------------------------
% META SKILLS
%----------------------------------------------------------------------------------------
\cvsection{Soft Skills}\\[-0.8em]
\vspace{-1.2em}
\begin{itemize}
\leftskip-1.8em
\itemsep-0.2em
\item[] Strong analytical capabilities
\item[] Excellent at presentations (EN, DE)
\item[] Work well in teams
\item[] Quick learner
\item[] Focused
\item[] Adaptable
\item[] Self-starter
\end{itemize}
%---------------------------------------------------------------------------------------
% CERTIFICATIONS
%----------------------------------------------------------------------------------------
\cvsection{Certifications}\\[-0.8em]
\vspace{-0.5em}
\begin{center}
\begin{minipage}[t]{0.45\mpwidth}
\centering
\BeginAccSupp{method=escape,Alt={SSCP - Systems Security Certified Practitioner}}
\includegraphics[width=\linewidth]{img/SSCP.png}
\EndAccSupp{}\\
\small{Systems Security Certified Practitioner (SSCP)}
\end{minipage}
\hspace{0.05\mpwidth}
\begin{minipage}[t]{0.45\mpwidth}
\centering
\href{https://www.credly.com/badges/02334d4b-37ca-497b-abde-f17a3c095a6f/public_url}{%
\BeginAccSupp{method=escape,Alt={PSM I - Professional Scrum Master I}}
\includegraphics[width=\linewidth]{img/PSMI.png}
\EndAccSupp{}\\
\small{Professional Scrum Master™ I (PSM I) \scriptsize\faExternalLink*}
}
\end{minipage}
\end{center}
\end{leftcolumn}
\begin{rightcolumn}
%---------------------------------------------------------------------------------------
% TITLE HEADER
%----------------------------------------------------------------------------------------
\fcolorbox{white}{darkcol}{\begin{minipage}[c][3.5cm][c]{1\mpwidth}
\hspace*{-1em}\fcolorbox{white}{darkcol}{\begin{minipage}[c][3.5cm][c]{1\mpwidth+1em}
\begin {center}
\HUGE{ \textbf{ \textcolor{white}{Alexander Bocken } } } \\[4pt]
% \textcolor{white}{ \rule{0.1\textwidth}{1.25pt} }
@@ -502,7 +586,7 @@
\small{\textcolor{white}{
\hspace*{0.5em}
\noindent{Adaptable and driven, I am a rapid learner with a solid technical and commercail base.
\noindent{Adaptable and driven, I am a rapid learner with a solid technical and commercial base.
I thrive on challenges and building genuine relationships. \\Adept at navigating intricate environments.
Very international.
}
@@ -517,43 +601,52 @@
%\vfill\null
\vspace{-0.75em}
\cvsectionspaced{Education}
\vspace{-2.5em}
\vspace{-1.5em}
\begin{tikzpicture}[remember picture, overlay, xshift=-0.5em]
\draw[-to, line width=0.275em, rounded corners=10pt, line cap=round, maincol] (0.1375em, -19em) -- (0.1375em, 0.7em);
\end{tikzpicture}
\hfill
\begin{minipage}[t]{1em}
\end{minipage}
\begin{minipage}[t]{\linewidth-1em}
\begin{tikzpicture}[scale=1,rounded corners=1.5pt,very thin, overlay, xshift=-0.5em]
\draw[-to, line width=0.275em, rounded corners=10pt, line cap=round, maincol] (0.1375em, -20em) -- (0.1375em, 0.7em);
\end{tikzpicture}
\cvevent
{\textbf{2022 - Jan 2025}}
{MSc. Management, Technology, and Economics}
{ETH Zürich, Switzerland}
{img/eth.svg}
{0.7em}
{-0.05\height}
{On top of a broad range of management and economics courses, focused electives in \emph{Risk and Insurance Management}, \emph{Systems Dynamics}, and \emph{Complexity}.\\
Thesis: \emph{``Evaluating the Robustness of the Global Antibiotics Supply Network''}\\
GPA: 5.3/6
}
{}
\null\vspace{0cm}
\vspace{-0.1cm}
%\vspace{-0.1cm}
\cvevent
{\textbf{2019 - 2022}}
{BSc. Mechanical Engineering}
{ETH Zürich, Switzerland}
{img/eth.svg}
{0.7em}
{-.05\height}
{Alongside core mechanical engineering courses, focused electives in \emph{Computing} and \emph{Numerical Methods}.\\
Thesis: \emph{``High speed Image processing for Laser Produced Plasma Applications''}\\
GPA: 5.0/6}
{}
\null\vspace{0cm}
\vspace{-0.25cm}
%\vspace{-0.25cm}
\cvevent
{\textbf{2016 - 2019}}
{BSc. Physics}
{ETH Zürich, Switzerland}
{img/eth.svg}
{0.7em}
{-.05\height}
{\vspace{-0.2cm}Transferred from Physics after successfully completing first three semesters.}
{}
\null\vspace{0}
\vspace{-0.5cm}
@@ -562,62 +655,70 @@
{\textbf{2016}}
{Abitur}
{Gymnasium Weingarten, Germany}
{Graduated with a grade of 1.1. Best student of year. Awarded prizes for Physics, Mathematics, and English. Class representative.}
{}
{}
{}
{Best student of year. Awarded prizes for \textbf{best student in Physics, Mathematics, and English}. Class representative.\\
GPA: 1.1 (German grading scale)}
{}
\null\vspace{0}
\end{minipage}
%---------------------------------------------------------------------------------------
% WORK EXPERIENCE
%----------------------------------------------------------------------------------------
\vspace{-2em}
\vspace{0}
\cvsectionspaced{Work Experience}
\vspace{-2.5em}
\vspace{-1.5em}
\hfill
\begin{minipage}[t]{1em}
\end{minipage}
\begin{minipage}[t]{\linewidth-1em}
\begin{tikzpicture}[scale=1,rounded corners=1.5pt,very thin, overlay, xshift=-0.5em]
\draw[-to, line width=0.275em, rounded corners=10pt, line cap=round, maincol] (0.1375em, -11em) -- (0.1375em, 0.7em);
\end{tikzpicture}
\begin{tikzpicture}[remember picture, overlay, xshift=-0.5em]
\draw[-to, line width=0.275em, rounded corners=10pt, line cap=round, maincol] (0.1375em, -39em) -- (0.1375em, 0.7em);
\end{tikzpicture}
\cveventdetailed{\textbf{2025 Feb - to date}}
\cveventdetailed{\textbf{2025 Feb - to date}}
{Associate Consultant Cyber Security \& Privacy}
{PwC Switzerland}
{img/pwc.svg}
{1.4em}
{-0.1\height}
{
\vspace{-1em}
\cvsubpoint{Strategic Enterprise Identity Transformation}{
\item Led analytical framework and workshop materials design for CHF $\approx$ 250bn AUM Swiss bank (FINMA category 3) IAM strategy engagement, selecting and tailoring strategic frameworks (North Star visioning, SWOT analysis, capability maturity assessments) to structure stakeholder alignment across 12 senior leaders (CISO, CTO-reporting directors)
\item Led analytical framework and workshop materials design for CHF $\approx$ 250bn AUM Swiss bank (FINMA category 3) IAM strategy engagement, selecting and tailoring strategic frameworks (North Star visioning, SWOT analysis, capability maturity assessments) to structure stakeholder alignment across senior leaders (CISO, CTO-reporting directors)
\item Supported vendor selection process through structured proof-of-concept evaluation, comparing enterprise IAM solutions across technical capabilities, cost efficiency, and implementation complexity; recommendation approved by steering committee for multi-year cloud-first transformation
\item Designed implementation roadmap translating business requirements (cost reduction, cloud migration, operational efficiency) into phased technical architecture, governance model, and key milestones
}
\cvsubpoint{Multi-National Cybersecurity Strategy}{
\item Suppoerted the creation of an enterprise cybersecurity strategy for Swiss multinational media conglomerate operating across Europe and Africa through executive workshops with CISO and CIO; stepped up to lead additional workstreams following team member departure, maintaining deliverable quality and project timeline
\item Supported the creation of an enterprise cybersecurity strategy for Swiss multinational media conglomerate operating across Europe and Africa through executive workshops with CISO and CIO
\item Stepped up to lead additional workstreams following team member departure, maintaining deliverable quality and project timeline
}
\cvsubpoint{Banking Sector Cyber Risk Audits}{
\item Conducted comprehensive cybersecurity audits across 10 Swiss banking institutions ($\approx$ CHF 800mn CHF 9bn AUM, FINMA category 3-5) over 6-month engagement; proactively expanded role beyond typical scope to lead stakeholder interviews with C-suite and senior risk personnel, synthesizing technical controls and governance assessments into business-relevant insights
\item Conducted comprehensive cybersecurity audits across 10 Swiss banking institutions ($\approx$ CHF 800mn CHF 9bn AUM, FINMA category 3-5) over 4-month engagement
\item Proactively expanded role beyond typical scope to lead stakeholder interviews with C-suite and senior risk personnel, synthesizing technical controls and governance assessments into business-relevant insights
\item Owned end-to-end audit documentation and quality assurance, ensuring consistency of findings evaluations and regulatory compliance assessments.
}
\cvsubpoint{Firm Development \& Internal Leadership}{
\item Lead monthly knowledge-sharing forums for 30-person cybersecurity practice, organizing speakers on emerging topics and facilitating cross-practice knowledge transfer
\item Leading monthly knowledge-sharing forums for 30-person cybersecurity practice, organizing speakers on emerging topics and facilitating cross-practice knowledge transfer
\item Organize team engagement initiatives, strengthening collaborative culture across distributed project teams
}
}
\null
\cvevent
{\textbf{2024 - 2025}}
{Student Assistant to the Chair of Logistics Management}
{ETH Zürich, Switzerland}
{\small Managing the chair's website, writing news articles, and suggesting and creating improvements.}
{}
\null
\pagebreak
% Draw timeline arrow continuation for second page
\begin{tikzpicture}[remember picture, overlay, xshift=-0.5em]
\draw[-, line width=0.275em, rounded corners=10pt, line cap=round, maincol] (0.1375em, -10.5em) -- (0.1375em, 0.7em);
\end{tikzpicture}
\cvevent
{\textbf{2024 Apr - Sep}}
{Intern Risk \& Control}
{Internship Risk \& Control}
{Zurich Insurance Group Ltd.}
{img/zurich.svg}
{1.2em}
{-0.2\height}
{\small\begin{itemize}
\item Assisted in the implementation of Zurich's Global Internal Control Framework, developing training materials, supporting stakeholders, and reviewing control objectives for consistency and compliance.
\item As part of Zurich Insurance's second line of defense, learned about the insurance industry, risk management, and internal controls in a multinational corporate environment.
@@ -626,28 +727,35 @@
{}
\null
\end{minipage}
\cvevent
{\textbf{2024 - 2025}}
{Student Assistant to the Chair of Logistics Management}
{ETH Zürich, Switzerland}
{img/eth.svg}
{0.7em}
{-.05\height}
{\small Managing the chair's website, writing news articles, and suggesting and creating improvements.}
{}
\null
\vspace{-1.5em}
%\cvskill{Skill_Name} {Years of experience} {percentage of bar fill} \\[-2pt]
\vspace{-2em}
%\cvskill[Icon or SVG path]{Skill_Name}{Years of experience}{percentage of bar fill}{SVG height (optional)} \\[-2pt]
\vspace{0em}
\cvsection{Programming Languages}\\[-0.75em]
\hfill
\begin{minipage}[t]{0.47\linewidth}
\cvskill{Python}{adept}{0.8}\\
\cvskill{R}{intermediate}{0.5}\\
\cvskill{C/C++}{intermediate}{0.5}\\
\cvskill{POSIX Shell/Bash}{adept}{0.8}\\
\cvskill{Matlab/Simulink}{intermediate}{0.5}\\
\cvskill[Python]{Python}{adept}{0.8}{}\\
\cvskill[RProject]{R}{intermediate}{0.5}{}\\
\cvskill[img/cpp.svg]{C/C++}{intermediate}{0.5}{0.9em}\\
\cvskill[img/bash.svg]{POSIX Shell/Bash}{adept}{0.8}{}\\
\end{minipage}
\hfill
\begin{minipage}[t]{0.47\linewidth}
\cvskill{JavaScript}{intermediate}{0.6}\\
\cvskill{HTML/CSS}{adept}{0.8}\\
\cvskill[Js]{JavaScript}{intermediate}{0.6}{}\\
\cvskill[Code]{HTML/CSS}{adept}{0.8}{}\\
\hspace*{0.5em}Other languages i have worked with:\\
\hspace*{0.5em}\textbf{PHP, AWK, LaTeX, SVG}
\hspace*{0.5em}\textbf{PHP, AWK, LaTeX, SVG, Matlab/Simulink}
\end{minipage}
\hfill
@@ -787,7 +895,7 @@
%----------------------------------------------------------------------------------------
\vspace{0.75em}
\hspace{0.25em} \textbf{Hobbies: }\normalsize Hiking, \href{https://bocken.org/rezepte}{Cooking \scriptsize\faExternalLink*}, Fitness, Linux, Webdev, Learning the \href{https://github.com/AlexBocken/kanji}{Japanese Kanji \scriptsize\faExternalLink*}
\hspace{0.25em} \textbf{Hobbies: }\normalsize Hiking, Cooking \href{https://bocken.org/rezepte}{(See my site here \scriptsize\faExternalLink*)}, Fitness, Linux, Webdev, Learning the \href{https://github.com/AlexBocken/kanji}{Japanese Kanji \scriptsize\faExternalLink*}
% - Reading
% - Hiking
% - Fitness
@@ -810,4 +918,5 @@
\vfill
\end{rightcolumn}
\end{paracol}
\end{document}

496
cv_de.tex
View File

@@ -1,4 +1,4 @@
%============================================================================%
%============See ================================================================%
%
% DOCUMENT DEFINITION
%
@@ -8,6 +8,7 @@
\documentclass[10pt,A4]{article}
\usepackage{blindtext}
\usepackage{accsupp}
%----------------------------------------------------------------------------------------
% ENCODING
%----------------------------------------------------------------------------------------
@@ -16,6 +17,7 @@
\usepackage[utf8]{inputenc}
\usepackage{tabularx}
\usepackage{multicol}
\usepackage{svg}
%----------------------------------------------------------------------------------------
% LOGIC
%----------------------------------------------------------------------------------------
@@ -88,7 +90,7 @@
% icon with email link
\newcommand{\iconemail}[5]{
\vcenteredhbox{\icon{#1}{#2}{#5}} \hspace{2pt} \href{mailto:#4}{\textcolor{#5}{#3 \tiny\faExternalLink*}}
\vcenteredhbox{\icon{#1}{#2}{#5}} \hspace{2pt} \href{mailto:#4}{\textcolor{#5}{#3 \scriptsize\faExternalLink*}}
}
\newcommand{\iconadress}[5]{
@@ -108,7 +110,7 @@
\usepackage[a4paper]{geometry}
% remove all possible margins
\geometry{top=0.3cm, bottom=0.3cm, left=0.5cm, right=0.5cm}
\geometry{top=0.2cm, bottom=0.2cm, left=0.2cm, right=0.2cm}
\usepackage{fancyhdr}
\pagestyle{empty}
@@ -148,6 +150,8 @@
%for drawing graphics
\usepackage{tikz}
\usetikzlibrary{shapes, backgrounds, positioning, mindmap, trees, calc}
\usepackage{tikzpagenodes} % Add this line
%----------------------------------------------------------------------------------------
% Color DEFINITIONS
@@ -224,6 +228,15 @@
\textcolor{maincol}{ \rule{0.1\textwidth}{2pt} } \\
}
}
\newcommand{\cvsectionspaced}[1] {
\vspace{14pt}
\hspace{6pt}
\cvtext{
\textbf{\LARGE{\textcolor{darkcol}{#1}}}\\[-4pt]
\textcolor{maincol}{ \rule{0.1\textwidth}{2pt} } \\
}
}
%----------------------------------------------------------------------------------------
% META SKILL
@@ -233,18 +246,33 @@
% param 1: name of the skill / tech / etc.
% param 2: level (for example in years)
% param 3: percent, values range from 0 to 1
% param 4: (optional) FontAwesome icon name (e.g., Python, Js, Html5, Css3, etc.) OR SVG path (e.g., img/cpp.svg)
% param 5: (optional) SVG height if param 4 is an SVG path (e.g., 0.9em)
\newcolumntype{L}[1]{>{\raggedright\arraybackslash}p{#1}}
\newcolumntype{C}[1]{>{\centering\arraybackslash}p{#1}}
\newcolumntype{R}[1]{>{\raggedleft\arraybackslash}p{#1}}
\newcommand{\cvskill}[3] {
\newcommand{\cvskill}[5][] {
\begin{tabularx}{\textwidth}{Xr@{}}
\textcolor{black}{\textbf{#1}} & \textcolor{maincol}{#2}\\
\end{tabularx}\\[-15pt]
\ifthenelse{\isempty{#1}}{}{
% Check if it's an SVG file (contains .svg)
\IfSubStr{#1}{.svg}{
% It's an SVG file path
\ifthenelse{\isempty{#5}}{
\raisebox{0pt}[\height][0pt]{\includesvg[height=0.9em,pretex=\relax]{#1}}\hspace{0.3em}
}{
\raisebox{0pt}[\height][0pt]{\includesvg[height=#5,pretex=\relax]{#1}}\hspace{0.3em}
}
}{
% It's a FontAwesome icon name
\textcolor{maincol}{\csname fa#1\endcsname}\hspace{0.3em}
}
}\textcolor{black}{\textbf{#2}} & \textcolor{maincol}{#3}\\
\end{tabularx}\\[-16pt]
\hspace{4pt}
\begin{tikzpicture}[scale=1,rounded corners=2pt,very thin]
\fill [lightcol] (0,0) rectangle (1\linewidth, 0.15);
\fill [maincol] (0,0) rectangle (#3\linewidth, 0.15);
\fill [maincol] (0,0) rectangle (#4\linewidth, 0.15);
\end{tikzpicture}
}
@@ -272,11 +300,13 @@
% param 1: time-frame i.e. Sep 14 - Jan 15 etc.
% param 2: event name (job position etc.)
% param 3: Customer, Employer, Industry
% param 4: Short description
% param 5: work done (optional)
% param 6: technologies include (optional)
% param 7: achievements (optional)
\newcommand{\cvevent}[7] {
% param 4: logo file path (optional, e.g., img/eth.svg)
% param 5: logo height (optional, e.g., 0.7em, defaults to 0.9em)
% param 6: logo vertical offset (optional, e.g., -.1\height, defaults to -.3\height)
% param 7: Short description
% param 8: work done (optional)
% param 9: technologies include (optional)
\newcommand{\cvevent}[9] {
% we wrap this part in a parbox, so title and description are not separated on a pagebreak
% if you need more control on page breaks, remove the parbox
@@ -287,22 +317,99 @@
\fill[black] (-0.5em -0.3em -0.15em, 4pt) circle [radius=0.3em];
\end{tikzpicture}
\hspace{-0.3em}\textcolor{black}{\textbf{#2}} & \colorbox{maincol}{\makebox[0.25\mpwidth]{\textcolor{white}{#1}}} \\
\textcolor{maincol}{\textbf{#3}} & \\
% Add logo if provided (before company name)
\ifthenelse{\isempty{#4}}{}{
\ifthenelse{\isempty{#5}}{
\ifthenelse{\isempty{#6}}{
\raisebox{-.3\height}{\includesvg[height=0.9em,pretex=\relax]{#4}}\hspace{0.5em}
}{
\raisebox{#6}{\includesvg[height=0.9em,pretex=\relax]{#4}}\hspace{0.5em}
}
}{
\ifthenelse{\isempty{#6}}{
\raisebox{-.3\height}{\includesvg[height=#5,pretex=\relax]{#4}}\hspace{0.5em}
}{
\raisebox{#6}{\includesvg[height=#5,pretex=\relax]{#4}}\hspace{0.5em}
}
}
}
\textcolor{maincol}{\textbf{#3}}
& \\
\end{tabular*}\\
\ifthenelse{\isempty{#4}}{}{
\cvtext{#4}\\
\ifthenelse{\isempty{#7}}{}{
\cvtext{#7}\\
}
}
\ifthenelse{\isempty{#5}}{}{
\ifthenelse{\isempty{#8}}{}{
\vspace{4pt}
{#5}
{#8}
}
\vspace{0pt}
}
%----------------------------------------------------------------------------------------
% CV EVENT WITH DETAILED SUBPOINTS
%----------------------------------------------------------------------------------------
% Renders a CV event with detailed bullet-point subprojects/achievements
% param 1: time-frame i.e. Sep 14 - Jan 15 etc.
% param 2: event name (job position etc.)
% param 3: Customer, Employer, Industry
% param 4: logo file path (optional, e.g., img/pwc.svg)
% param 5: logo height (optional, e.g., 0.9em, defaults to 0.9em)
% param 6: logo vertical offset (optional, e.g., -.1\height, defaults to -.3\height)
% param 7: List of detailed subpoints (use \cvsubpoint{title}{description} for each)
\newcommand{\cveventdetailed}[7] {
\begin{tabular*}{1\mpwidth}{p{0.72\mpwidth} r}
\begin{tikzpicture}[remember picture, overlay]
\fill[black] (-0.5em -0.3em -0.15em, 4pt) circle [radius=0.3em];
\end{tikzpicture}
\hspace{-0.3em}\textcolor{black}{\textbf{#2}} & \colorbox{maincol}{\makebox[0.25\mpwidth]{\textcolor{white}{#1}}} \\
% Add logo if provided (before company name)
\ifthenelse{\isempty{#4}}{}{
\ifthenelse{\isempty{#5}}{
\ifthenelse{\isempty{#6}}{
\raisebox{-.3\height}{\includesvg[height=0.9em,pretex=\relax]{#4}}\hspace{0.5em}
}{
\raisebox{#6}{\includesvg[height=0.9em,pretex=\relax]{#4}}\hspace{0.5em}
}
}{
\ifthenelse{\isempty{#6}}{
\raisebox{-.3\height}{\includesvg[height=#5,pretex=\relax]{#4}}\hspace{0.5em}
}{
\raisebox{#6}{\includesvg[height=#5,pretex=\relax]{#4}}\hspace{0.5em}
}
}
}
\textcolor{maincol}{\textbf{#3}}
& \\
\end{tabular*}\\[4pt]
#7
\vspace{6pt}
}
% Helper command for detailed subpoints within cveventdetailed
% param 1: subpoint title (e.g., project name)
% param 2: detailed description (separate bullet points with \item)
\newcommand{\cvsubpoint}[2]{
\vspace{3pt}
\textcolor{black}{\textbf{#1}}\\[-18pt]
\begin{itemize}
\setlength{\itemsep}{2pt}
\setlength{\parskip}{0pt}
\setlength{\parsep}{0pt}
\small
#2
\end{itemize}
\vspace{-10pt}
}
%----------------------------------------------------------------------------------------
% CV META EVENT
%----------------------------------------------------------------------------------------
@@ -355,58 +462,53 @@
\begin{document}
\columnratio{0.31}
\setlength{\columnsep}{2.2em}
\setlength{\columnseprule}{4pt}
\setlength{\columnseprule}{0pt}
\colseprulecolor{lightcol}
\begin{paracol}{2}
\begin{leftcolumn}
%---------------------------------------------------------------------------------------
% META IMAGE
%----------------------------------------------------------------------------------------
%\includegraphics[width=\linewidth]{untitled.jpg} %trimming relative to image size
\begin{tikzpicture}[remember picture]
\clip ($(current page text area.north east)!0.06!(current page text area.south east)!0.12!(current page text area.north west)$)
circle (0.5\linewidth) node {\includegraphics[width=\linewidth]{img/alexander.jpg}};
\begin{center}
\begin{tikzpicture}
\clip (0,0) circle (0.5\linewidth);
\node at (0,0) {\includegraphics[width=\linewidth]{img/alexander.jpg}};
\end{tikzpicture}
\end{center}
\vspace{0.5em}
\cvsection{Kontakt}\\[-0.5em]
\iconemail{Envelope}{14}{alexander@bocken.org}{alexander@bocken.org}{black}\\[6pt]
\iconemail{Envelope}{14}{abocken@ethz.ch}{abocken@ethz.ch}{black}\\[6pt]
\icontext{Github}{14}{\href{https://github.com/AlexBocken}{AlexBocken \tiny\faExternalLink*}}{black}\\[6pt]
\icontext{Globe}{14}{\href{https://bocken.org}{bocken.org \tiny\faExternalLink*}}{black}\\[6pt]
\icontext{Phone}{14}{\href{tel:+41-78-692-5995}{+41 (0)78 692 59 95 \tiny\faExternalLink*}}{black}\\[6pt]
\icontexttopalign{MapMarker}{14}{Ausserdorfstr. 10a\\ 8052 Zürich}{black}\\[6pt]
%\iconemail{Envelope}{14}{alexander.bocken@pwc.ch}{alexander.bocken@pwc.ch}{black}\\[6pt]
\icontext{Github}{14}{\href{https://github.com/AlexBocken}{AlexBocken \scriptsize\faExternalLink*}}{black}\\[6pt]
\icontext{Globe}{14}{\href{https://bocken.org}{bocken.org \scriptsize\faExternalLink*}}{black}\\[6pt]
\icontext{Linkedin}{14}{\href{https://linkedin.com/in/alexander-bocken}{/in/alexander-bocken \scriptsize\faExternalLink*}}{black}\\[6pt]
\icontext{Phone}{14}{\href{tel:+41-78-692-5995}{+41 (0)78 692 59 95 \scriptsize\faExternalLink*}}{black}\\[6pt]
\icontexttopalign{MapMarker}{14}{Ausserdorfstrasse 10a\\ 8052 Zürich}{black}\\[6pt]
\icontext{Flag}{14}{Österreicher}{black}\\[6pt]
\vfill\null
%\cvqrcode{0.7}
%\vfill\null
%\cvqrcode{0.7}
%---------------------------------------------------------------------------------------
% META SKILLS
% LANGUAGES
%----------------------------------------------------------------------------------------
\cvsection{Kompetenzen}\\[-0.8em]
\vspace{-1.2em}
\begin{itemize}
\leftskip-1.8em
\itemsep-0.2em
\item[] Ausgez. analytische Fähigkeiten
\item[] Ausgez. Präsentationsfähigkeiten
\item[] Arbeite gut in Teams
\item[] Schnelle Auffassungsgabe
\item[] Fokusiert
\item[] Anpassungsfähig
\item[] Selbststarter
\end{itemize}
\cvsection{Sprachen}\\[-0.8em]
\vspace{-0.5em}
\begin{minipage}{\mpwidth}
\cvskill{Deutsch}{Muttersprache}{1}\\
\cvskill{Schweizerdeutsch}{Baslerdütsch}{1}\\
\cvskill{Englisch}{fließend}{1}\\
\cvskill{Japanisch}{Anfänger (N5)}{0.2}\\
\end{minipage}
%---------------------------------------------------------------------------------------
% ACHIEVEMENTS
%----------------------------------------------------------------------------------------
%\newpage
\cvsection{Errungenschaften}
\cvsection{Auszeichnungen}
\vspace{-1.8em}
\cvmetaevent
{GRE}
@@ -415,119 +517,249 @@
\cvmetaevent
{Abitur}
{Jahrgangsbester}
{Durchschnittsnote von 1,1.}
{Gesamtnote 1,1 erreicht}
\cvmetaevent
{Jugend gründet}
{7. Platz}
{Erreichte den 7. Platz in ``Jugend gründet'' Wettbewerb Süddeutschland in 2014/2015.}
{7. Platz im Wettbewerb ``Jugend gründet'' für Süddeutschland 2014/2015 erreicht.}
\cvmetaevent
{Technik-Akademie Tübingen}
{}
{Nominiert von meiner Schule für aussergewöhnliche Leistungen zur Teilnahme an der ``Technik-Akademie'' für begabte Kinder in Tübingen im Jahr 2013.
{Teilnehmer der ``Technik-Akademie'' für hochbegabte Kinder in Tübingen 2013.}
\vspace{1em}
\newpage
%---------------------------------------------------------------------------------------
% META SKILLS
%----------------------------------------------------------------------------------------
\cvsection{Soft Skills}\\[-0.8em]
\vspace{-1.2em}
\begin{itemize}
\leftskip-1.8em
\itemsep-0.2em
\item[] Starke analytische Fähigkeiten
\item[] Exzellente Präsentationsfähigkeiten (DE, EN)
\item[] Teamorientiert
\item[] Schnelle Auffassungsgabe
\item[] Fokussiert
\item[] Anpassungsfähig
\item[] Eigeninitiativ
\end{itemize}
%---------------------------------------------------------------------------------------
% CERTIFICATIONS
%----------------------------------------------------------------------------------------
\cvsection{Zertifizierungen}\\[-0.8em]
\vspace{-0.5em}
\begin{center}
\begin{minipage}[t]{0.45\mpwidth}
\centering
\BeginAccSupp{method=escape,Alt={SSCP - Systems Security Certified Practitioner}}
\includegraphics[width=\linewidth]{img/SSCP.png}
\EndAccSupp{}\\
\small{Systems Security Certified Practitioner (SSCP)}
\end{minipage}
\hspace{0.05\mpwidth}
\begin{minipage}[t]{0.45\mpwidth}
\centering
\href{https://www.credly.com/badges/02334d4b-37ca-497b-abde-f17a3c095a6f/public_url}{%
\BeginAccSupp{method=escape,Alt={PSM I - Professional Scrum Master I}}
\includegraphics[width=\linewidth]{img/PSMI.png}
\EndAccSupp{}\\
\small{Professional Scrum Master™ I (PSM I) \scriptsize\faExternalLink*}
}
\end{minipage}
\end{center}
\end{leftcolumn}
\begin{rightcolumn}
%---------------------------------------------------------------------------------------
% TITLE HEADER
%----------------------------------------------------------------------------------------
\fcolorbox{white}{darkcol}{\begin{minipage}[c][3.5cm][c]{1\mpwidth}
\hspace*{-1em}\fcolorbox{white}{darkcol}{\begin{minipage}[c][3.5cm][c]{1\mpwidth+1em}
\begin {center}
\HUGE{ \textbf{ \textcolor{white}{Alexander Bocken } } } \\[-24pt]
\HUGE{ \textbf{ \textcolor{white}{Alexander Bocken } } } \\[4pt]
% \textcolor{white}{ \rule{0.1\textwidth}{1.25pt} }
\\[4pt]
\large{ \textcolor{offwhite} {MSc. Student - Management, Technologie und Ökonomie} } \\[0.5em]
\large{ \textcolor{offwhite} {} }
\small{\textcolor{white}{
\hspace*{0.5em}
\noindent\paragrapah{
Ich bin anpassungsfähig und engagiert, lerne schnell und kann gut kommunizieren und echte Beziehungen aufbauen.
Ich freue mich über Herausforderungen und den Aufbau von Freundschaften und programmiere leidenschaftlich gern. Geschickt im Umgang mit komplizierten technischen Umgebungen.
\noindent{Anpassungsfähig und motiviert, bin ich ein schneller Lerner mit solider technischer und kaufmännischer Basis.
Ich gedeihe bei Herausforderungen und dem Aufbau echter Beziehungen. \\Geschickt im Navigieren komplexer Umgebungen.
Sehr international.
}
\hspace*{0.5em}
}}
\end {center}
\end{minipage}} \\[14pt]
\vspace{-12pt}
\end{minipage}}
%---------------------------------------------------------------------------------------
% EDUCATION
%----------------------------------------------------------------------------------------
%\vfill\null
\cvsection{Ausbildung}
\vspace{-0.75em}
\cvsectionspaced{Ausbildung}
\vspace{-1.5em}
\begin{tikzpicture}[remember picture, overlay, xshift=-0.5em]
\draw[-to, line width=0.275em, rounded corners=10pt, line cap=round, maincol] (0.1375em, -20.5em) -- (0.1375em, 0.7em);
\end{tikzpicture}
\hfill
\begin{minipage}[t]{1em}
\end{minipage}
\begin{minipage}[t]{\linewidth-1em}
\begin{tikzpicture}[scale=1,rounded corners=1.5pt,very thin, overlay, xshift=-0.5em]
\draw[-to, rounded, line width=0.275em, rounded corners=10pt, line cap=round, maincol] (0.1375em, -23em) -- (0.1375em, 0.7em);
\end{tikzpicture}
\cvevent
{\textbf{2022 - heute }}
{MSc. Management, Technology, and Economics}
{\textbf{2022 - Jan 2025}}
{MSc. Management, Technologie und Ökonomie}
{ETH Zürich, Schweiz}
{Alle Kurse bereits abgeschlossen (Durchschnittsnote: 5,3/6). Im 4. Semester.
Zusätzlich zu einer breiten Palette von Management- und Wirtschaftskursen wurden Wahlfächer in den Bereichen \emph{Risiko- und Versicherungsmanagement}, \emph{Systemdynamik} und \emph{Komplexität} belegt.
{img/eth.svg}
{0.7em}
{-0.05\height}
{Neben einem breiten Spektrum an Management- und Wirtschaftskursen, fokussierte Wahlfächer in \emph{Risiko- und Versicherungsmanagement}, \emph{Systemdynamik} und \emph{Komplexität}.\\
Thesis: \emph{``Evaluating the Robustness of the Global Antibiotics Supply Network''}\\
Notendurchschnitt: 5,3/6
}
\vspace{0cm}\null
{}
\null\vspace{0cm}
%\vspace{-0.1cm}
\cvevent
{\textbf{2019 - 2022}}
{BSc. Maschineningenieurwissenschaften}
{BSc. Maschinenbau}
{ETH Zürich, Schweiz}
{Durchschnittsnote: 5.0/6\\
Abschlussarbeit: ``\emph{High speed Image processing for Laser Produced Plasma Applications}''
}
\vspace{0cm}\null
{img/eth.svg}
{0.7em}
{-.05\height}
{Neben den Kernfächern des Maschinenbaus, fokussierte Wahlfächer in \emph{Computing} und \emph{Numerischen Methoden}.\\
Thesis: \emph{``High speed Image processing for Laser Produced Plasma Applications''}\\
Notendurchschnitt: 5,0/6}
{}
\null\vspace{0cm}
%\vspace{-0.25cm}
\cvevent
{\textbf{2016 - 2019}}
{BSc. Physik}
{ETH Zürich, Schweiz}
{Übertritt von Physik nach erfolgreichem Abschluss der ersten drei Semester.}
\vspace{0}\null
{img/eth.svg}
{0.7em}
{-.05\height}
{\vspace{-0.2cm}Wechsel von Physik nach erfolgreichem Abschluss der ersten drei Semester.}
{}
\null\vspace{0}
\vspace{-0.5cm}
\cvevent
{\textbf{2016}}
{Abitur}
{Gymnasium Weingarten, Deutschland}
{Abgeschlossen mit 1,1. Bester Schüler des Jahrgangs. Erhielt Preise für Physik, Mathematik und Englisch. Klassensprecher.}
\vspace{0}\null
\end{minipage}
\vspace{-1em}
\cvsection{Sprachen}\\[-0.5em]
\begin{minipage}[t]{0.47\linewidth}
\cvskill{Deutsch}{Muttersprache}{1}\\
\cvskill{Schweizerdeutsch}{Baslerdütsch}{1}\\
\cvskill{Englisch}{fliessend}{1}\\
\end{minipage}
\hfill
\begin{minipage}[t]{0.47\linewidth}
\cvskill{Japanisch}{Anfänger (N5)}{0.25}\\
\cvskill{Latein}{Anfänger}{0.2}\\
\end{minipage}
{}
{}
{}
{Jahrgangsbester. Ausgezeichnet mit Preisen als \textbf{bester Schüler in Physik, Mathematik und Englisch}. Klassensprecher.\\
Gesamtnote: 1,1}
{}
\null\vspace{0}
%\cvskill{Skill_Name} {Years of experience} {percentage of bar fill} \\[-2pt]
%---------------------------------------------------------------------------------------
% WORK EXPERIENCE
%----------------------------------------------------------------------------------------
\vspace{0}
\cvsectionspaced{Berufserfahrung}
\vspace{-1.5em}
\cvsection{Programmingsprachen}\\[-0.5em]
\begin{tikzpicture}[remember picture, overlay, xshift=-0.5em]
\draw[-to, line width=0.275em, rounded corners=10pt, line cap=round, maincol] (0.1375em, -37em) -- (0.1375em, 0.7em);
\end{tikzpicture}
\cveventdetailed{\textbf{Feb 2025 - heute}}
{Associate Consultant Cyber Security \& Privacy}
{PwC Schweiz}
{img/pwc.svg}
{1.4em}
{-0.1\height}
{
\vspace{-1em}
\cvsubpoint{Strategische Enterprise Identity Transformation}{
\item Leitete die Entwicklung analytischer Frameworks und Workshop-Materialien für IAM-Strategieprojekt einer Schweizer Bank (CHF $\approx$ 250 Mrd. AUM, FINMA-Kategorie 3), wählte und passte strategische Frameworks (North Star Visioning, SWOT-Analyse, Capability Maturity Assessments) zur Strukturierung der Stakeholder-Abstimmung unter Führungskräften (CISO, CTO-berichtende Direktoren) an
\item Unterstützte den Anbieterauswahlprozess durch strukturierte Proof-of-Concept-Evaluierung, verglich Enterprise-IAM-Lösungen hinsichtlich technischer Fähigkeiten, Kosteneffizienz und Implementierungskomplexität; Empfehlung vom Lenkungsausschuss für mehrjährige Cloud-First-Transformation genehmigt
\item Gestaltete Implementierungsfahrplan zur Übersetzung von Geschäftsanforderungen (Kostenreduktion, Cloud-Migration, operative Effizienz) in phasenweise technische Architektur, Governance-Modell und Schlüsselmeilensteine
}
\cvsubpoint{Multinationale Cybersecurity-Strategie}{
\item Unterstützte die Erstellung einer Enterprise-Cybersecurity-Strategie für multinationalen Schweizer Medienkonzern mit Aktivitäten in Europa und Afrika durch Executive-Workshops mit CISO und CIO
\item Übernahm nach Ausscheiden eines Teammitglieds zusätzliche Arbeitsströme, behielt Qualität der Ergebnisse und Projektzeitplan bei
}
\cvsubpoint{Cyber-Risikoprüfungen im Bankensektor}{
\item Führte umfassende Cybersecurity-Audits bei 10 Schweizer Bankinstituten (CHF $\approx$ 800 Mio. CHF 9 Mrd. AUM, FINMA-Kategorie 3-5) über vier Monate hinweg durch
\item Erweiterte proaktiv die Rolle über typischen Umfang hinaus, um Stakeholder-Interviews mit C-Suite und leitenden Risikopersonal zu führen, synthetisierte technische Kontrollen und Governance-Bewertungen zu geschäftsrelevanten Erkenntnissen
\item Verantwortete durchgängig Audit-Dokumentation und Qualitätssicherung, stellte Konsistenz der Bewertungen und Einhaltung regulatorischer Anforderungen sicher
}
}
\null
\pagebreak
% Draw timeline arrow continuation for second page
\begin{tikzpicture}[remember picture, overlay, xshift=-0.5em]
\draw[-, line width=0.275em, rounded corners=10pt, line cap=round, maincol] (0.1375em, -18.5em) -- (0.1375em, 0.7em);
\end{tikzpicture}
\cvsubpoint{Unternehmensentwicklung \& Interne Führung}{
\item Leite monatliche Wissensaustauschforen für 30-köpfiges Cybersecurity-Team, organisiere Referenten zu neuen Themen und erleichtere bereichsübergreifenden Wissenstransfer
\item Organisiere Team-Engagement-Initiativen, stärke kollaborative Kultur über verteilte Projektteams hinweg
}
\vspace{6pt}
\cvevent
{\textbf{Apr - Sep 2024}}
{Praktikum Risk \& Control}
{Zurich Insurance Group Ltd.}
{img/zurich.svg}
{1.2em}
{-0.2\height}
{\small\begin{itemize}
\item Unterstützte bei der Implementierung von Zurichs Global Internal Control Framework, entwickelte Schulungsmaterialien, unterstützte Stakeholder und überprüfte Kontrollziele auf Konsistenz und Compliance
\item Als Teil der zweiten Verteidigungslinie von Zurich Insurance lernte über die Versicherungsbranche, Risikomanagement und interne Kontrollen in multinationalem Unternehmensumfeld
\end{itemize}
}
{}
\null
\cvevent
{\textbf{2024 - 2025}}
{Studentische Hilfskraft am Lehrstuhl für Logistikmanagement}
{ETH Zürich, Schweiz}
{img/eth.svg}
{0.7em}
{-.05\height}
{\small Verwaltung der Lehrstuhl-Website, Verfassen von News-Artikeln und Vorschlagen und Umsetzen von Verbesserungen.}
{}
\null
%\cvskill[Icon or SVG path]{Skill_Name}{Years of experience}{percentage of bar fill}{SVG height (optional)} \\[-2pt]
\vspace{0em}
\cvsection{Programmiersprachen}\\[-0.75em]
\hfill
\begin{minipage}[t]{0.47\linewidth}
\cvskill{Python}{versiert}{0.8}\\
\cvskill{R}{mittel}{0.5}\\
\cvskill{C/C++}{mittel}{0.5}\\
\cvskill{POSIX Shell/Bash}{versiert}{0.8}\\
\cvskill{Matlab/Simulink}{mittel}{0.5}\\
\cvskill[Python]{Python}{versiert}{0.8}{}\\
\cvskill[RProject]{R}{fortgeschritten}{0.5}{}\\
\cvskill[img/cpp.svg]{C/C++}{fortgeschritten}{0.5}{0.9em}\\
\cvskill[img/bash.svg]{POSIX Shell/Bash}{versiert}{0.8}{}\\
\end{minipage}
\hfill
\begin{minipage}[t]{0.47\linewidth}
\cvskill{GAMS}{mittel}{0.5}\\
\cvskill{JavaScript}{mittel}{0.6}\\
\cvskill{HTML/CSS}{versiert}{0.8}\\
\cvskill{elixir}{Anfänger}{0.15}\\
\hspace*{0.5em}Weitere Sprachen:\\
\hspace*{0.5em}\textbf{PHP, AWK, LaTeX, SVG, SQL, SvelteKit}
\cvskill[Js]{JavaScript}{fortgeschritten}{0.6}{}\\
\cvskill[Code]{HTML/CSS}{versiert}{0.8}{}\\
\hspace*{0.5em}Weitere Sprachen, mit denen ich gearbeitet habe:\\
\hspace*{0.5em}\textbf{PHP, AWK, LaTeX, SVG, Matlab/Simulink}
\end{minipage}
\hfill
% \vspace{0.7cm}
% \begin{minipage}[t]{0.47\linewidth}
@@ -541,26 +773,28 @@ Ich bin anpassungsfähig und engagiert, lerne schnell und kann gut kommunizieren
% \cvskill{SVG}{}{1}\\
% \end{minipage}
\vspace{-1.5em}
\cvsection{Computerkenntnisse}\\
\vspace{-2em}
\cvsection{Computerkenntnisse}\\[-0.75em]
\begin{minipage}[t]{0.325\linewidth}
\cvskillthreecolumn{MS Office}{}{1}\\
\cvskillthreecolumn{Multithreading}{C++, Py}{0.5}\\
\cvskillthreecolumn{Linux}{}{0.75}\\
\cvskillthreecolumn{MS Office}{}{1}
\cvskillthreecolumn{Multithreading}{C++, Py}{0.5}
\cvskillthreecolumn{Linux}{}{0.75}
\end{minipage}
\hfill
\begin{minipage}[t]{0.325\linewidth}
\cvskillthreecolumn{Photoshop}{mittel}{0.7}\\
\cvskillthreecolumn{Inkscape}{mittel}{0.7}\\
\cvskillthreecolumn{Nginx}{mittel}{0.7}\\
\cvskillthreecolumn{Photoshop}{fortgeschritten}{0.7}
\cvskillthreecolumn{Inkscape}{fortgeschritten}{0.7}
\cvskillthreecolumn{Nginx}{fortgeschritten}{0.7}
\end{minipage}
\hfill
\begin{minipage}[t]{0.325\linewidth}
\cvskillthreecolumn{git}{mittel}{0.6}\\
\cvskillthreecolumn{SSH}{}{1}\\
\cvskillthreecolumn{Vim}{}{0.75}\\
\cvskillthreecolumn{SQL}{Anfänger}{0.3}
\cvskillthreecolumn{MongoDB}{fortgeschritten}{0.6}
\cvskillthreecolumn{SvelteKit}{}{0.75}
\end{minipage}
\vspace{0.3em}
\hspace*{0.5em}Weitere Tools, mit denen ich vertraut bin: \textbf{Docker}, \textbf{Git}, \textbf{Vim}, \textbf{SSH}
% - various REST API interactions (Oxford Dictionaries, JDIC, various Google APIs...)
% # Hobbies
@@ -571,27 +805,7 @@ Ich bin anpassungsfähig und engagiert, lerne schnell und kann gut kommunizieren
% - learning the Japanese Kanji (https://github.com/AlexBocken/kanji)
%---------------------------------------------------------------------------------------
% WORK EXPERIENCE
%----------------------------------------------------------------------------------------
%\vfill\null
%\cvsection{WORK EXPERIENCE}
%
%\cvevent
% {\textbf{Jan YY - Dec YY}}
% {Position name}
% {Institute/Organization, City (State)}
% {Write about your roles and responsibilities. In case of teaching experience also write about the subjects you taught.}
% {}
%\vfill\null
%
%\cvevent
% {\textbf{Jan YY - Jul YY}}
% {Position name}
% {Institute/Organization, City (State)}
% {Write about your roles and responsibilities. In case of teaching experience also write about the subjects you taught.}
% {}
%\vfill\null
%---------------------------------------------------------------------------------------
% PUBLICATION
%----------------------------------------------------------------------------------------
@@ -682,11 +896,8 @@ Ich bin anpassungsfähig und engagiert, lerne schnell und kann gut kommunizieren
% PERSONAL DETAILS
%----------------------------------------------------------------------------------------
\hfill
\cvsection{Hobbies}
\hspace{0.5em} Wandern, \href{https://bocken.org/rezepte}{Kochen \tiny\faExternalLink*}, Fitness, Linux, Webdev, Erlernen der \href{https://github.com/AlexBocken/kanji}{japanischen Kanji \tiny\faExternalLink*}
\vspace{0.75em}
\hspace{0.25em} \textbf{Hobbys: }\normalsize Wandern, Kochen \href{https://bocken.org/rezepte}{(Siehe meine Website \scriptsize\faExternalLink*)}, Fitness, Linux, Webentwicklung, Lernen der \href{https://github.com/AlexBocken/kanji}{japanischen Kanji \scriptsize\faExternalLink*}
% - Reading
% - Hiking
% - Fitness
@@ -709,4 +920,5 @@ Ich bin anpassungsfähig und engagiert, lerne schnell und kann gut kommunizieren
\vfill
\end{rightcolumn}
\end{paracol}
\end{document}

BIN
img/PSMI.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

BIN
img/SSCP.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

55
img/bash.svg Normal file
View File

@@ -0,0 +1,55 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
<svg
width="800px"
height="800px"
viewBox="-16 0 256 256"
version="1.1"
preserveAspectRatio="xMidYMid"
id="svg4"
sodipodi:docname="bash-icon-svgrepo-com.svg"
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs4" />
<sodipodi:namedview
id="namedview4"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="1.76"
inkscape:cx="400.28409"
inkscape:cy="524.43182"
inkscape:window-width="3196"
inkscape:window-height="1749"
inkscape:window-x="2880"
inkscape:window-y="47"
inkscape:window-maximized="1"
inkscape:current-layer="svg4" />
<path
d="M 207.9535,52.161792 127.31715,4.2869915 c -9.58397,-5.7159887 -21.5306,-5.7159887 -31.114579,0 L 15.550082,52.161792 C 5.848665,58.014362 -0.05794423,68.539535 4.2867948e-4,79.869434 V 175.60289 C -0.05224627,186.92704 5.8536257,197.44477 15.550082,203.29438 l 80.636342,47.85866 c 9.584946,5.71245 21.529636,5.71245 31.114586,0 l 80.63634,-47.85866 c 9.70761,-5.84857 15.62077,-16.37448 15.5658,-27.70764 V 79.869434 c 0.0584,-11.329899 -5.84824,-21.855072 -15.54965,-27.707642 z"
fill="#ffffff"
id="path1" />
<path
d="M 208.41153,52.276683 127.59758,4.296434 c -9.60508,-5.7285787 -21.57803,-5.7285787 -31.183115,0 L 15.584333,52.276683 C 5.8615472,58.142144 -0.05807185,68.690499 4.2962369e-4,80.045353 V 175.98967 C -0.05236135,187.33876 5.8665189,197.87966 15.584333,203.74216 l 80.81395,47.96406 c 9.606057,5.72504 21.577057,5.72504 31.183117,0 l 80.81395,-47.96406 c 9.72899,-5.86146 15.65518,-16.41055 15.60008,-27.76867 V 80.045353 c 0.0585,-11.354854 -5.86111,-21.903209 -15.5839,-27.76867 z M 99.23017,246.80301 18.416219,198.83895 C 10.430093,193.99964 5.5658593,185.32755 5.5996973,175.98967 V 80.045353 C 5.5626405,70.706641 10.427702,62.033071 18.416219,57.196074 L 99.23017,9.2158255 c 7.86518,-4.6922471 17.67035,-4.6922471 25.53552,0 l 80.74923,47.9802485 c 6.65664,4.031835 11.19758,10.792926 12.41175,18.480083 -2.68625,-5.71232 -8.72221,-7.281994 -15.76147,-3.236442 l -76.39621,47.316775 c -9.53132,5.5505 -16.5544,11.81302 -16.57058,23.30238 v 94.21282 c 0,6.87744 2.76716,11.32755 7.03926,12.63831 -1.399,0.25638 -2.81749,0.39173 -4.23974,0.40455 -4.49396,-0.003 -8.90417,-1.21624 -12.76776,-3.51154 z"
fill="#2f3a3e"
id="path2"
style="fill:#5e81ac;fill-opacity:1" />
<path
d="m 187.00732,185.05984 -20.08643,12.0131 c -0.53795,0.21621 -0.89847,0.72853 -0.92035,1.30788 v 5.27995 c 0,0.64587 0.43595,0.90422 0.96879,0.59743 l 20.39321,-12.40062 c 0.49942,-0.37439 0.73833,-1.00309 0.61358,-1.61467 v -4.63408 c -0.0162,-0.59743 -0.4844,-0.85578 -0.9688,-0.54899 z"
fill="#3ab14a"
id="path3"
style="fill:#fffffa;fill-opacity:1" />
<path
d="m 144.26295,140.83187 c 0.64587,-0.32294 1.17871,0 1.19485,0.92036 l 0.0646,7.00764 c 2.41548,-1.09736 5.11027,-1.42435 7.7181,-0.93651 0.50054,0.12918 0.71045,0.80734 0.51669,1.61467 l -1.53393,6.15187 c -0.11629,0.46428 -0.35623,0.88836 -0.69431,1.22714 -0.11873,0.11715 -0.25491,0.2152 -0.40366,0.29064 -0.18253,0.0987 -0.39306,0.13287 -0.59743,0.0969 -2.54286,-0.5631 -5.20474,-0.13582 -7.4436,1.19486 -3.27367,1.47469 -5.41355,4.69392 -5.50601,8.28322 0,3.22933 1.61466,4.1174 7.24984,4.21428 7.44361,0.12917 10.67294,3.37465 10.75367,10.88284 -0.17723,7.83711 -3.7908,15.20007 -9.88175,20.13486 l 0.12918,6.87847 c -0.0115,0.85431 -0.45524,1.64457 -1.17871,2.09907 l -4.06895,2.34126 c -0.64587,0.32293 -1.17871,0 -1.19486,-0.90421 v -6.76545 c -3.48767,1.4532 -7.02379,1.79228 -9.28431,0.88807 -0.41982,-0.16147 -0.61358,-0.79119 -0.43597,-1.51778 l 1.46935,-6.21646 c 0.11173,-0.49196 0.36419,-0.94078 0.7266,-1.29173 0.11494,-0.1101 0.24552,-0.2026 0.38752,-0.2745 0.21052,-0.0946 0.45149,-0.0946 0.66201,0 2.87841,0.78041 5.94861,0.39156 8.54158,-1.08182 3.74177,-1.80461 6.17348,-5.53613 6.31333,-9.68799 0,-3.48767 -1.92145,-4.94087 -6.45865,-4.97317 -5.86124,0 -11.30266,-1.13026 -11.41568,-9.68798 0.13486,-7.47628 3.60558,-14.50062 9.46193,-19.14992 l -0.29064,-7.03994 c -0.003,-0.86661 0.44329,-1.67289 1.17871,-2.13136 z"
fill="#ffffff"
id="path4" />
</svg>

After

Width:  |  Height:  |  Size: 4.6 KiB

65
img/cpp.svg Normal file
View File

@@ -0,0 +1,65 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
version="1.1"
id="Layer_1"
x="0px"
y="0px"
width="306px"
height="344.35px"
viewBox="0 0 306 344.35"
enable-background="new 0 0 306 344.35"
xml:space="preserve"
sodipodi:docname="cpp.svg"
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs6" /><sodipodi:namedview
id="namedview6"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="2.0441305"
inkscape:cx="262.94799"
inkscape:cy="203.50952"
inkscape:window-width="3196"
inkscape:window-height="1749"
inkscape:window-x="2880"
inkscape:window-y="47"
inkscape:window-maximized="1"
inkscape:current-layer="Layer_1" />
<path
id="path1"
style="fill:#5e81ac;fill-opacity:1;stroke-width:0;stroke-dasharray:none;stroke:none"
d="M 153 0 C 148.19675 -2.9605947e-16 143.3935 1.05225 139.75 3.15625 L 13.25 76.189453 C 5.962 80.396453 0 90.725625 0 99.140625 L 0 245.20898 C 0 249.41698 1.4905781 254.10272 3.8925781 258.26172 L 153 172.17578 L 3.8925781 258.26367 C 6.2935781 262.42267 9.607 266.0552 13.25 268.1582 L 139.75 341.19336 C 147.037 345.40136 158.963 345.40136 166.25 341.19336 L 292.75 268.1582 C 296.394 266.0542 299.70642 262.42172 302.10742 258.26172 C 304.50842 254.10272 306 249.41698 306 245.20898 L 306 99.140625 C 306 94.932625 304.50942 90.246891 302.10742 86.087891 C 299.70542 81.927891 296.393 78.293453 292.75 76.189453 L 166.25 3.15625 C 162.6065 1.05225 157.80325 2.9605947e-16 153 0 z " />
<g
id="g4">
<path
fill="#FFFFFF"
d="M153,274.175c-56.243,0-102-45.757-102-102s45.757-102,102-102c36.292,0,70.139,19.53,88.331,50.968 l-44.143,25.544c-9.105-15.736-26.038-25.512-44.188-25.512c-28.122,0-51,22.878-51,51c0,28.121,22.878,51,51,51 c18.152,0,35.085-9.776,44.191-25.515l44.143,25.543C223.142,254.644,189.294,274.175,153,274.175z"
id="path4" />
</g>
<g
id="g5">
<polygon
fill="#FFFFFF"
points="255,166.508 243.666,166.508 243.666,155.175 232.334,155.175 232.334,166.508 221,166.508 221,177.841 232.334,177.841 232.334,189.175 243.666,189.175 243.666,177.841 255,177.841 "
id="polygon4" />
</g>
<g
id="g6">
<polygon
fill="#FFFFFF"
points="297.5,166.508 286.166,166.508 286.166,155.175 274.834,155.175 274.834,166.508 263.5,166.508 263.5,177.841 274.834,177.841 274.834,189.175 286.166,189.175 286.166,177.841 297.5,177.841 "
id="polygon5" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

37
img/eth.svg Normal file
View File

@@ -0,0 +1,37 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="ETH" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="186.066px" height="68.032px" viewBox="0 0 186.066 68.032" enable-background="new 0 0 186.066 68.032"
xml:space="preserve">
<g>
<g>
<path d="M109.18,39.305c-0.81,4.017-3.913,4.221-4.528,4.221c-1.752,0-2.797-1.012-2.797-2.705c0-0.386,0.057-0.912,0.155-1.439
l1.919-9.562l0.008-0.037h-2.267l-1.956,9.805l-0.026,0.14c-0.084,0.443-0.163,0.863-0.163,1.408c0,2.634,1.73,4.402,4.309,4.402
c1.886,0,3.401-0.619,4.507-1.841l-0.294,1.615l-0.007,0.038h2.235l3.088-15.53l0.006-0.037h-2.299L109.18,39.305z"/>
<path d="M124.635,29.595c-1.752,0-3.304,0.716-4.281,1.974l0.351-1.748l0.007-0.037h-2.235l-3.089,15.529l-0.007,0.038h2.269
l1.891-9.524c0.483-2.445,2.36-4.218,4.465-4.218c0.904,0,1.616,0.356,2.176,1.087l0.021,0.028l1.841-1.649l-0.019-0.023
C127.174,30.07,126.064,29.595,124.635,29.595z"/>
<polygon points="87.149,31.759 87.143,31.797 94.878,31.797 84.579,43.442 84.574,43.448 84.186,45.351 95.164,45.351
95.554,43.337 87.348,43.337 97.679,31.692 97.684,31.685 98.071,29.784 87.534,29.784 "/>
<polygon points="128.332,45.313 128.324,45.351 130.591,45.351 133.684,29.784 131.455,29.784 "/>
<path d="M159.072,29.596c-1.865,0-3.321,0.571-4.44,1.75l1.759-8.668h-2.268l-4.555,22.676h2.268l1.891-9.525
c0.811-4.015,3.941-4.218,4.56-4.218c1.733,0,2.769,1.011,2.769,2.704c0,0.384-0.059,0.908-0.158,1.44l-1.924,9.6h2.266
l1.988-9.809c0.096-0.521,0.159-0.962,0.159-1.547C163.385,31.365,161.649,29.596,159.072,29.596z"/>
<path d="M144.041,29.595c-4.113,0-7,2.897-7.923,7.949c-0.166,0.846-0.224,1.792-0.224,2.397c0,3.452,2.096,5.597,5.472,5.597
c1.963,0,3.755-0.752,5.181-2.177l0.021-0.021l-1.308-1.595l-0.023-0.028l-0.024,0.027c-1.203,1.266-2.281,1.783-3.721,1.783
c-1.609,0-3.33-0.958-3.33-3.648c0-0.842,0.1-1.538,0.249-2.322c0.243-1.32,0.79-3.164,2.005-4.447
c0.966-0.996,2.111-1.5,3.406-1.5c1.352,0,2.197,0.481,3.021,1.715l0.02,0.031l1.664-1.406l0.023-0.02l-0.018-0.025
C147.396,30.306,146.01,29.595,144.041,29.595z"/>
<polygon points="132.296,25.512 134.568,25.512 135.133,22.677 132.869,22.677 "/>
<polygon points="110.249,25.512 112.522,25.512 113.084,22.677 110.823,22.677 "/>
<polygon points="104.203,25.512 106.475,25.512 107.039,22.677 104.777,22.677 "/>
</g>
<g>
<polygon points="73.91,31.464 68.809,31.464 70.6,22.677 27.235,22.677 22.681,45.353 39.971,45.353 41.104,39.685 30.895,39.685
31.514,36.567 41.719,36.567 42.747,31.464 32.539,31.464 33.157,28.345 49.337,28.345 45.921,45.353 53.008,45.353
56.424,28.345 62.374,28.345 58.958,45.353 66.046,45.353 67.795,36.567 72.896,36.567 71.146,45.353 78.233,45.353
82.789,22.677 75.702,22.677 "/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

20
img/pwc.svg Normal file
View File

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 104 67">
<defs>
<style>
.cls-1 {
fill: #000;
}
.cls-1, .cls-2 {
stroke-width: 0px;
}
.cls-2 {
fill: #fd5108;
}
</style>
</defs>
<path class="cls-1" d="M69.26,30.74c-2.53.41-3.83,2.28-3.83,5.57s1.73,5.53,4.37,5.53c1.23,0,2.35-.41,4.7-1.56v2.68c-2.82,1.29-4.48,1.69-6.76,1.69-2.46,0-4.19-.65-5.61-2.09-1.45-1.45-2.17-3.36-2.17-5.5,0-4.74,3.51-7.95,8.64-7.95,3.41,0,5.75,1.56,5.75,3.84,0,1.47-1.09,2.48-2.71,2.48-.83,0-1.51-.22-2.39-.72v-3.98ZM56.76,37.06c2.27-2.86,3.07-4.02,3.07-5.42s-1.11-2.53-2.6-2.53c-.91,0-1.74.43-2.14.88v5.83l-3.72,4.96v-11.31h-3.54l-5.88,9.75v-9.75h-2.03l-5.34,1.3v1.36l2.91.3v11.96h3.76l5.64-9.27v9.27h4.12l5.74-7.34ZM23.34,32.52c.87-.11,1.29-.15,1.7-.15,2.45,0,3.78,1.63,3.78,4.7,0,3.62-1.63,5.51-4.66,5.51-.25,0-.43,0-.83-.02v-10.04ZM23.34,44.25c.98.11,1.93.15,2.5.15,5.04,0,8.24-3.23,8.24-8.03,0-4.15-2.4-7.15-5.65-7.15-1.41,0-2.35.29-5.09,1.92v-2h-1.52l-5.86,1.78v1.43h2.43v16.73l-2.18.54v1.39h9.58v-1.39s-2.44-.54-2.44-.54v-4.84Z"/>
<path class="cls-2" d="M66.54,24.97h-15.98l2.72-4.51h15.98l-2.72,4.51ZM87.96,15.94h-15.98l-2.72,4.51h15.98l2.72-4.51Z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

39
img/zurich.svg Normal file
View File

@@ -0,0 +1,39 @@
<svg version="1.1" id="Mark" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="193px" height="50px" viewBox="2.3 -3 128.8 33.4" enable-background="new 2.3 -3 128.8 33.4" xml:space="preserve" class="headerLogo">
<g>
<path id="logoSymbol" class="logoSymbol" fill="#2167ae" d="M19.5-1.3c-8.3,0-15,6.7-15,15c0,3.4,1.1,6.6,3.1,9.1L20.1,6.4l-1.3,0l-1.3,0c-1.4,0-2.8,0.1-3.7,0.3
c-0.6,0.1-1.1,0.3-1.5,0.6c-0.5,0.3-1.1,1.1-1.5,1.8c0,0.1-0.1,0.2-0.2,0.4L9.7,9.4l1.2-4.7h15.6L14.1,21.2
c0.8-0.1,1.1-0.1,1.8-0.1c0.5,0,1.3,0,2.3,0.1l2.2,0.1c0.8,0,1.5,0.1,2,0.1c1.1,0,1.9-0.1,2.6-0.3c0.6-0.2,1.1-0.4,1.6-0.8
c0.9-0.6,1.7-1.6,2.2-2.5c0-0.1,0.1-0.2,0.2-0.4l0.7,0.2c-0.2,0.8-0.3,1.1-0.7,1.9c-0.7,1.5-1.4,2.5-2.5,3.3
c-1.1,0.8-2.2,1.2-3.6,1.2l-0.2,0c-1,0-1.8-0.1-4.3-0.5c-2.5-0.4-3.8-0.5-5.1-0.5c-0.8,0-1.6,0.1-2.4,0.2c-1.1,0.2-1.5,0.3-2.5,0.7
c2.7,3,6.7,4.9,11.1,4.9c8.3,0,15-6.7,15-15C34.5,5.4,27.8-1.3,19.5-1.3" />
<path id="logoText" class="logoText" fill="#2167ae" d="M85.1,12.8c-0.5,0.3-1.1,0.5-1.8,0.6c-0.3,0-0.6,0.1-0.8,0.1c-0.1,0-0.1,0-0.2,0V8.1c0.2,0,0.3,0,0.4,0
c0.7,0,1.4,0.1,2,0.2c0.4,0.1,0.7,0.3,1,0.5c0.5,0.4,0.8,1,0.8,1.8c0,0.7-0.2,1.2-0.6,1.6C85.6,12.5,85.3,12.7,85.1,12.8 M90.6,20
c-0.5-0.5-1-1-1.7-1.7c-0.4-0.5-0.8-0.9-1.1-1.2l-2.3-2.7c0.3-0.1,0.4-0.1,0.6-0.2c0.7-0.3,1.3-0.6,1.8-1c0.6-0.5,0.9-1,1.2-1.7
c0.1-0.4,0.2-0.7,0.2-1.1c0-0.9-0.3-1.7-1-2.4c-0.6-0.6-1.4-1.1-2.4-1.3c-0.7-0.2-1.3-0.2-2.5-0.3c-0.4,0-0.9,0-1.4,0h-3.8
c0.3,0.2,0.3,0.3,0.5,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.3,0.1,0.8,0.1,1.6v9.6c0,0.7,0,1.1-0.2,1.4c-0.1,0.2-0.1,0.3-0.2,0.5
c-0.1,0.2-0.2,0.3-0.5,0.5h4.6c-0.2-0.2-0.3-0.3-0.4-0.5c-0.1-0.1-0.2-0.3-0.2-0.4c-0.1-0.3-0.2-0.7-0.2-1.4c0-0.2,0-0.5,0-0.7
v-3.3l2.7,3.2c0.1,0.2,0.3,0.4,0.6,0.7c0.3,0.4,0.6,0.6,0.7,0.8c0.5,0.5,1,0.9,1.5,1.2c0.4,0.2,0.8,0.3,1.4,0.3c0.2,0,0.5,0,0.8,0
h1.8c-0.2-0.2-0.3-0.3-0.5-0.4C91.1,20.4,90.9,20.2,90.6,20 M96.8,9.1c0-1,0-1.2,0.2-1.6C97,7.3,97,7.2,97.1,7
c0.2-0.2,0.3-0.4,0.5-0.6H93c0.3,0.3,0.4,0.4,0.5,0.6c0.1,0.2,0.2,0.3,0.2,0.5c0.1,0.4,0.1,0.7,0.2,1.6c0,0.4,0,0.7,0,0.9v8.7
c0,0.5-0.1,1.1-0.2,1.4c-0.1,0.1-0.1,0.3-0.2,0.4c-0.1,0.2-0.2,0.2-0.4,0.5h4.6c-0.2-0.2-0.3-0.3-0.4-0.5c-0.1-0.1-0.2-0.3-0.2-0.4
c-0.1-0.3-0.2-0.8-0.2-1.3V10L96.8,9.1z M110.8,18.9c-0.9,0.4-1.7,0.5-2.6,0.5c-1.5,0-2.8-0.5-3.8-1.6c-0.9-1-1.5-2.4-1.5-4
c0-1.5,0.5-3,1.3-3.9c0.4-0.4,0.8-0.8,1.3-1.1c0.8-0.5,1.8-0.7,2.8-0.7c0.9,0,1.8,0.2,2.6,0.5c0.5,0.2,0.7,0.3,1.2,0.7V6.5
c-0.4-0.1-0.5-0.2-0.9-0.2c-0.8-0.2-1.7-0.3-2.6-0.3c-1.6,0-2.9,0.3-4.2,0.8c-0.7,0.3-1.4,0.7-2,1.2c-1.8,1.4-2.8,3.5-2.8,6
c0,2.3,0.9,4.4,2.7,5.7c1.4,1.1,3.3,1.7,5.5,1.7c1.4,0,2.7-0.2,4.1-0.7c0.1,0,0.1,0,0.2-0.1V18c-0.4,0.2-0.5,0.3-0.7,0.4
C111.4,18.6,111.1,18.8,110.8,18.9 M128,9.1c0-0.6,0.1-1.1,0.2-1.5c0.1-0.2,0.1-0.4,0.2-0.5c0.2-0.2,0.3-0.4,0.6-0.6h-4.8
c0.3,0.2,0.4,0.3,0.5,0.6c0.1,0.2,0.2,0.3,0.2,0.5c0.1,0.3,0.2,0.8,0.2,1.5v3.5h-6.6V9.9c0-0.8,0-1.3,0-1.7c0-0.2,0.1-0.4,0.1-0.6
c0.1-0.3,0.4-0.8,0.6-1c0,0,0.1-0.1,0.2-0.2h-4.7c0.3,0.3,0.4,0.4,0.5,0.6c0.1,0.1,0.2,0.3,0.3,0.5c0.1,0.4,0.1,0.6,0.2,1.5l0,0.9
v8c0,0.8,0,1.2-0.1,1.5c0,0.2-0.1,0.4-0.1,0.6c-0.1,0.3-0.3,0.6-0.6,0.8c0,0-0.1,0.1-0.2,0.1h4.6c-0.2-0.2-0.3-0.3-0.4-0.5
c-0.1-0.1-0.2-0.3-0.2-0.5c-0.1-0.4-0.2-0.7-0.2-1.3c0-0.3,0-0.6,0-0.9v-3.5h6.6v3.6c0,0.8,0,1.1-0.1,1.5c0,0.2-0.1,0.4-0.2,0.6
c-0.1,0.3-0.3,0.5-0.5,0.8c0,0-0.1,0.1-0.2,0.2h4.7c-0.2-0.2-0.3-0.3-0.4-0.5c-0.1-0.2-0.2-0.3-0.3-0.5c-0.1-0.3-0.2-0.6-0.2-1.3
c0-0.4,0-0.7,0-0.8l0-8L128,9.1L128,9.1L128,9.1z M55.9,19c-0.6,0.1-1.4,0.2-2.3,0.2c-0.3,0-0.7,0-1.2,0h-2.2l8.9-12.8H47.6
l-1.4,3.1c0.5-0.2,0.7-0.3,1.1-0.5c0.7-0.3,1.4-0.5,2.1-0.6c0.6-0.1,1.2-0.2,2.1-0.2c0.4,0,0.8,0,1.1,0h1.7L45.2,21h12.6l1.5-3.3
c-0.5,0.3-0.7,0.4-1.1,0.6C57.5,18.6,56.7,18.8,55.9,19 M71.9,7c0.1,0.2,0.2,0.3,0.2,0.5c0.1,0.4,0.1,0.7,0.1,1.5v5.6
c0,1.2,0,1.9-0.1,2.5c-0.1,0.4-0.2,0.8-0.4,1.1c-0.4,0.6-1,1-1.8,1.2c-0.3,0.1-0.7,0.1-1,0.1c-1.3,0-2.3-0.5-2.9-1.2
c-0.4-0.6-0.5-1.2-0.5-2.7l0-1.2V10c0-0.9,0-1.3,0-1.7c0-0.3,0.1-0.5,0.1-0.7c0.1-0.3,0.3-0.8,0.6-1.1c0,0,0.1-0.1,0.1-0.1h-4.7
C61.9,6.6,62,6.8,62.2,7c0.1,0.2,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.4,0.1,0.7c0,0.1,0,0.4,0,0.9l0,0.8v4.2c0,1.6,0,1.9,0.1,2.6
c0.1,1.1,0.4,1.9,1,2.7c1.1,1.4,2.9,2.1,5.2,2.1c1.1,0,2.1-0.2,2.9-0.5c0.8-0.3,1.6-0.8,2.2-1.5c0.7-0.8,1.1-1.7,1.2-2.8
c0.1-0.7,0.1-1.5,0.1-2.6V9.9l0-0.8V8.9c0-0.6,0-1,0.1-1.3c0.1-0.2,0.1-0.4,0.3-0.6c0.2-0.2,0.3-0.4,0.6-0.6h-4.7
C71.7,6.6,71.8,6.7,71.9,7" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.9 KiB