first version
This commit is contained in:
parent
15bb2ac947
commit
8010f67ef1
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 1.0 MiB |
@ -44,7 +44,7 @@
|
||||
\pgfmathparse{##3+##4+##5}
|
||||
\let\perc\pgfmathresult
|
||||
|
||||
\pgfmathparse{#2*\perc/100}
|
||||
\pgfmathparse{#2}
|
||||
\let\barsize\pgfmathresult
|
||||
|
||||
\pgfmathparse{\barsize*##3/100}
|
||||
@ -68,6 +68,6 @@
|
||||
}
|
||||
\begin{tikzpicture}
|
||||
\setcounter{barcount}{0}
|
||||
%\draw[draw=#3, line width= 2pt] (0,0) -- (#1,0);
|
||||
|
||||
}
|
||||
{\end{tikzpicture}}
|
@ -24,7 +24,7 @@
|
||||
\newcommand{\bubble}[5]{
|
||||
\definecolor{tmpcol}{RGB}{50,50,#5}
|
||||
% slice
|
||||
\filldraw[fill=tmpcol!100,draw=none] (#1,0.5) circle (#3);
|
||||
\filldraw[fill=thirdcol,draw=none] (#1,0.5) circle (#3);
|
||||
|
||||
% outer label
|
||||
\node[label=\textcolor{textcol}{#4}] at (#1,0.7) {};
|
||||
|
43
infographics/g/factbubble.tex
Normal file
43
infographics/g/factbubble.tex
Normal file
@ -0,0 +1,43 @@
|
||||
%-----------------------------------------------------------------------------------------------------------------------------------------------%
|
||||
% The MIT License (MIT)
|
||||
%
|
||||
% Copyright (c) 2016 Jan Küster
|
||||
%
|
||||
% Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
% of this software and associated documentation files (the "Software"), to deal
|
||||
% in the Software without restriction, including without limitation the rights
|
||||
% to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
% copies of the Software, and to permit persons to whom the Software is
|
||||
% furnished to do so, subject to the following conditions:
|
||||
%
|
||||
% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
% AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
% LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
% OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
% THE SOFTWARE.
|
||||
%
|
||||
%-----------------------------------------------------------------------------------------------------------------------------------------------%
|
||||
|
||||
% draw a circle with facts
|
||||
% param 1: fact text
|
||||
% param 2: scale default=1 (scales only chart, not label text)
|
||||
% param 3: big border color
|
||||
% param 4: second border color
|
||||
% param 5: label bg color
|
||||
\newcommand{\factbubble}[5]{
|
||||
\begin{tikzpicture}
|
||||
\pgfmathparse{#2*2}
|
||||
\let\pbxwidth\pgfmathresult
|
||||
\filldraw[fill=#3,draw=none] (0,0) circle (#2 * 1.5);
|
||||
\filldraw[fill=#5,draw=#4, line width=3.5pt] (0,0) circle (#2 * 1.2);
|
||||
\node at (0,0) {
|
||||
\parbox{\pbxwidth cm}{
|
||||
\begin{center}
|
||||
#1
|
||||
\end{center}
|
||||
}
|
||||
};
|
||||
\end{tikzpicture}
|
||||
}
|
@ -29,18 +29,18 @@
|
||||
\foreach \p/\t in {#1} {
|
||||
\setcounter{a}{\value{b}}
|
||||
\addtocounter{b}{\p}
|
||||
\addtocounter{c}{35}
|
||||
\definecolor{currentcolor}{RGB}{50,50, 1\p}
|
||||
\square{\thea/100*#2}{\theb/100*#2}{\p\%}{\t}{currentcolor}
|
||||
\square{\thea/100*#2}{\theb/100*#2}{\p\%}{\t}{thirdcol}
|
||||
}
|
||||
\end{tikzpicture}
|
||||
}
|
||||
|
||||
\newcommand{\square}[5] {
|
||||
\pgfmathparse{#1+0.5*(#2-#1)-0.14}
|
||||
\pgfmathparse{#1+0.5*(#2-#1)}
|
||||
\let\midangle\pgfmathresult
|
||||
|
||||
\draw[draw=sectcol] (0.4, \midangle) -- (0.6,\midangle);
|
||||
% slice
|
||||
\filldraw[fill=#5!100,draw=bgcol!100, line width=3pt] (0,#1) -- (2,#1) -- (2,#2) -- (0,#2) -- cycle;
|
||||
\filldraw[fill=#5!100,draw=bgcol!100, line width=3pt] (0,#1) -- (0.5,#1) -- (0.5,#2) -- (0,#2) -- cycle;
|
||||
% outer label
|
||||
\node[label=\textcolor{textcol}{#4}] at (1,\midangle) {};
|
||||
\node[label=360:\colorbox{sectcol}{\textcolor{textcol}{#4}}] at (0.55,\midangle) {};
|
||||
}
|
||||
|
Binary file not shown.
@ -144,7 +144,7 @@
|
||||
|
||||
|
||||
\newcommand{\icons}{Font-Awesome-SVG-PNG/white/png/64/} %path to your icon lib
|
||||
\newcommand{\icon}[2]{\includegraphics[height=#2]{\icons#1}} %icon shortcut
|
||||
\newcommand{\icon}[2]{\colorbox{thirdcol}{\includegraphics[height=#2]{\icons#1}}} %icon shortcut
|
||||
\newcommand{\icontext}[3]{ %icon with text shortcut
|
||||
\vcenteredhbox{\icon{#1}{#2}} \vcenteredhbox{\textcolor{textcol}{#3}}
|
||||
}
|
||||
@ -252,7 +252,10 @@
|
||||
%----------------------------------------------------------------------------------------
|
||||
\input{./g/timeline.tex}
|
||||
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% FACT BUBBLE
|
||||
%----------------------------------------------------------------------------------------
|
||||
\input{./g/factbubble.tex}
|
||||
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
@ -296,6 +299,11 @@
|
||||
%----------------------------------------- -----------------------------------------------
|
||||
\newcommand{\mystrut}{\rule[-.3\baselineskip]{0pt}{\baselineskip}}
|
||||
|
||||
% colored rule and text for chart legends, wrapped in parbox
|
||||
% param 1: text
|
||||
% param 2: width in cm or pt, em ...
|
||||
% param 3: color
|
||||
\newcommand{\legend}[3]{\parbox{#2}{\textcolor{#3}{\rule{#2}{4pt}}\\#1}}
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% CUSTOM LOREM IPSUM
|
||||
@ -352,21 +360,50 @@
|
||||
%----------------------------------------------------------------------------------------
|
||||
%\vspace{-136pt}
|
||||
%\hspace{0.75\linewidth}
|
||||
%\includegraphics[width=103pt]{qrcode}
|
||||
%
|
||||
%\normalsize
|
||||
%\vspace{88pt}
|
||||
|
||||
|
||||
|
||||
%---------------------------------------------------------------------------------------
|
||||
% META SECTION
|
||||
%----------------------------------------------------------------------------------------
|
||||
\vspace{16pt}
|
||||
|
||||
|
||||
\begin{minipage}{0.59\textwidth}
|
||||
\cvsect{Skills and Technologies}{0.49}{thirdcol}{textcol}\\[4pt]
|
||||
|
||||
%---------------------------------------------------------------------------------------
|
||||
% FACTS
|
||||
%----------------------------------------------------------------------------------------
|
||||
\mbox{
|
||||
\parbox[c][3cm][c]{0.29\textwidth}{
|
||||
\textcolor{textcol}{I am a digital media graduate with working experience in research projects as well as in the private sector.}
|
||||
}
|
||||
\hspace{10pt}
|
||||
\parbox[c][3cm][c]{0.32\textwidth}{
|
||||
\begin{center}
|
||||
\factbubble{\huge{\textcolor{sectcol}{\textbf{M.Sc.}}}\\\small{\textcolor{sectcol}{\textbf{Digital Media}}}}{1}{maincol}{sectcol}{thirdcol}\\
|
||||
\textcolor{textcol}{as latest degree from}\\
|
||||
\textcolor{textcol}{\textbf{University of Bremen}}
|
||||
\end{center}
|
||||
}
|
||||
\hspace{10pt}
|
||||
\parbox[c][3cm][c]{0.29\textwidth}{
|
||||
\textcolor{textcol}{And I am looking for exciting interdisciplinary projects worldwide.}
|
||||
}
|
||||
}
|
||||
\vspace{34pt}
|
||||
%---------------------------------------------------------------------------------------
|
||||
% SKILLS AND TECHNOLOGIES
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\cvsect{Skills and Technologies}{0.49}{thirdcol}{textcol}\\[4pt]
|
||||
\mbox{
|
||||
\parbox[b][150pt][c]{0.35\textwidth}{
|
||||
\textcolor{textcol}{The biggest part I contribute to my work is in the area of software development.}\\
|
||||
|
||||
\cvsect{Languages}{0.49}{thirdcol}{textcol}\\[4pt]
|
||||
\icontext{language}{14pt}{\colorbox{maincol}{German (native)}}\\
|
||||
\icontext{language}{14pt}{\colorbox{maincol}{English (c1)}}\\
|
||||
}
|
||||
\begin{piechart}{360}{2}{bgcol}{textcol}{sectcol}
|
||||
\slice{6}{Design}{thirdcol}
|
||||
\slice{16}{Consulting}{fourthcol}
|
||||
@ -374,37 +411,70 @@
|
||||
\slice{16}{Projects}{secondcol}
|
||||
\slice{46}{Development}{maincol}
|
||||
\end{piechart}\\
|
||||
|
||||
|
||||
\begin{barchart}{10}{6}{sectcol}{textcol}{sectcol}{maincol}{secondcol}{thirdcol}
|
||||
\baritem{80}{Javascript}{50}{0}{10}
|
||||
\baritem{50}{Java}{15}{25}{25}
|
||||
\baritem{80}{Metor}{60}{0}{0}
|
||||
\baritem{80}{React}{40}{0}{0}
|
||||
\baritem{50}{XPages}{50}{0}{0}
|
||||
\baritem{50}{LaTex}{0}{10}{50}
|
||||
\end{barchart}\\
|
||||
\mbox{\colorbox{maincol}{\strut} Experience \colorbox{secondcol}{\strut} Events \colorbox{thirdcol}{\strut} Education}\\
|
||||
|
||||
%\bubbles{6/git, 6/Eclipse, 9/Office, 7/Inkscape, 6/Blender}{\cvsection{Technologies}}\\[16pt]
|
||||
|
||||
\cvsect{Languages}{0.49}{thirdcol}{textcol}\\[4pt]
|
||||
%\input{world.tex}
|
||||
}
|
||||
\begin{center}
|
||||
\begin{tikzpicture}
|
||||
\draw[draw=sectcol,dashed, opacity=0.5] (4,0) -- (-4,0);
|
||||
\end{tikzpicture}
|
||||
\end{center}
|
||||
\mbox{\hspace{-14pt}
|
||||
\begin{barchart}{10}{5.5}{sectcol}{textcol}{sectcol}{maincol}{secondcol}{thirdcol}
|
||||
\baritem{50}{Java}{0}{0}{65}
|
||||
\baritem{80}{Javascript}{100}{0}{0}
|
||||
\baritem{80}{Metor}{0}{0}{70}
|
||||
\baritem{80}{React}{0}{0}{30}
|
||||
\baritem{50}{XPages}{0}{0}{50}
|
||||
\baritem{50}{LaTex}{0}{0}{60}
|
||||
\end{barchart}
|
||||
\hspace{10pt}
|
||||
\parbox[b][100pt][c]{0.3\textwidth}{\textcolor{textcol}{Currently, I develop realtime apps with Meteor and react.\\Formerly I worked with Java and XPages.}}
|
||||
}
|
||||
\begin{center}
|
||||
\begin{tikzpicture}
|
||||
\draw[draw=sectcol,dashed, opacity=0.5] (4,0) -- (-4,0);
|
||||
\end{tikzpicture}
|
||||
\end{center}
|
||||
\begin{center}
|
||||
\mbox{
|
||||
\parbox[b][2cm][c]{3cm}{
|
||||
\textcolor{textcol}{I am using git and eclipse regularly for my dev projects.}
|
||||
}\hspace{12pt}
|
||||
\bubbles{5/Eclipse, 6/git, 4/Office, 3/Inkscape, 3/Blender}{\cvsection{Technologies}}
|
||||
}
|
||||
\end{center}
|
||||
\cvsect{Actvities}{0.49}{thirdcol}{textcol}\\[20pt]
|
||||
\mbox{\parbox[b][3cm][c]{3cm}{
|
||||
\factbubble{\HUGE{\textcolor{sectcol}{\textbf{6}}}\\\large{\textcolor{sectcol}{\textbf{years}}}}{0.85}{maincol}{sectcol}{thirdcol}\\
|
||||
\textcolor{textcol}{of participation at}\\
|
||||
\textcolor{textcol}{\textbf{Global Game Jam}}
|
||||
}
|
||||
\parbox[b][3cm][c]{4cm}{
|
||||
\textcolor{textcol}{In my freetime I do practice many creative hobbies. Due to Muay Thai training I can keep my body and mind in balance.}
|
||||
}
|
||||
\squares{20/Game Dev,40/Martial Arts,10/News,20/Music}{1}
|
||||
}
|
||||
\end{minipage}
|
||||
\begin{minipage}{0.05\textwidth}
|
||||
\begin{center}
|
||||
\begin{tikzpicture}
|
||||
\draw[draw=sectcol,dashed, opacity=0.5] (0,-12) -- (0,12);
|
||||
\end{tikzpicture}
|
||||
\end{center}
|
||||
\end{minipage}
|
||||
\begin{minipage}{0.4\textwidth}
|
||||
%\squares{10/Game Development,40/Martial Arts,30/News,20/Music}{1.5}\\[6pt]
|
||||
\cvsect{Experience and Education}{0.49}{thirdcol}{textcol}\\[16pt]
|
||||
\cvsect{Experience and Education}{0.4}{thirdcol}{textcol}\\[16pt]
|
||||
|
||||
\mbox{\colorbox{maincol}{\strut} Experience \colorbox{secondcol}{\strut} Events \colorbox{thirdcol}{\strut} Education}
|
||||
\hspace{60pt}\mbox{\legend{Experience}{1.8cm}{maincol} \legend{Events}{1.1cm}{secondcol} \legend{Education}{1.5cm}{thirdcol}}
|
||||
\vspace{-40pt}
|
||||
\begin{center}
|
||||
|
||||
%---------------------------------------------------------------------------------------
|
||||
% EXPERIENCE
|
||||
%----------------------------------------------------------------------------------------
|
||||
\begin{cvtimeline}{2009}{2017}{19.5}{\linewidth}
|
||||
\begin{cvtimeline}{2009}{2017}{20}{\linewidth}
|
||||
\cvevent{1/2009}{11/2011}{Bachelor Studies}{Uni Bremen}{Master Thesis: Semi Automated Scoring in Technology Based Assessment}{thirdcol}{0}
|
||||
\cvevent{5/2009}{1/2010}{Semester Abroad}{University of Melbourne}{Mastered six months of study and trans-cultural experience in Melbourne, Australia}{maincol}{1}
|
||||
\cvevent{6/2010}{11/2011}{Student Assistant}{Uni Bremen}{Realized an online diagnosis platform for workforce literacy development (Flex)}{thirdcol}{1}
|
||||
\cvevent{6/2010}{11/2011}{Student Assistant}{Uni Bremen}{Realized an online diagnosis platform for workforce literacy development (Flex)}{maincol}{1}
|
||||
\cvevent{9/2011}{9/2011}{PM Simulation}{Getoq Consulting}{Performed a two-day project simulation from management perspective}{secondcol}{2}
|
||||
\cvevent{11/2011}{7/2015}{Master Studies Digital Media}{University of Bremen}{Inter-cultural classes in English, covering special topics in computer science and design}{thirdcol}{0}
|
||||
\cvevent{1/2012}{11/2014}{Scientific Employee}{Uni of Bremen}{Invented a flexible assessment framework, targeting industrial trainees}{maincol}{1}
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 124 KiB |
35356
infographics/world.tex
35356
infographics/world.tex
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user