some comments added

This commit is contained in:
jankapunkt 2014-09-25 20:26:34 +02:00
parent 744c037405
commit 0720ad92d3
2 changed files with 49 additions and 35 deletions

BIN
main.pdf

Binary file not shown.

View File

@ -46,13 +46,15 @@
% LOGIC % LOGIC
%---------------------------------------------------------------------------------------- %----------------------------------------------------------------------------------------
\usepackage{xifthen}% provides \isempty test % provides \isempty test
\usepackage{xifthen}
%---------------------------------------------------------------------------------------- %----------------------------------------------------------------------------------------
% FONT % FONT
%---------------------------------------------------------------------------------------- %----------------------------------------------------------------------------------------
% some tex-live fonts - choose your own % some tex-live fonts - choose your own
%\usepackage[defaultsans]{droidsans} %\usepackage[defaultsans]{droidsans}
%\usepackage[default]{comfortaa} %\usepackage[default]{comfortaa}
%\usepackage{cmbright} %\usepackage{cmbright}
@ -62,11 +64,11 @@
%\usepackage[light,math]{iwona} %\usepackage[light,math]{iwona}
%\usepackage[thin]{roboto} %\usepackage[thin]{roboto}
% default the font % set font default
\renewcommand*\familydefault{\sfdefault} \renewcommand*\familydefault{\sfdefault}
\usepackage[T1]{fontenc} \usepackage[T1]{fontenc}
%more font size definitions % more font size definitions
\usepackage{moresize} \usepackage{moresize}
@ -82,8 +84,7 @@
\usepackage[a4paper]{geometry} \usepackage[a4paper]{geometry}
% for example, change the margins to 2 inches all round % for example, change the margins to 2 inches all round
\geometry{top=1.75cm,bottom=-.6cm, \geometry{top=1.75cm, bottom=-.6cm, left=2.5cm, right=2.5cm}
left=2.5cm,right=2.5cm}
%use customized header %use customized header
\usepackage{fancyhdr} \usepackage{fancyhdr}
@ -93,17 +94,19 @@
\setlength{\headheight}{-5pt} \setlength{\headheight}{-5pt}
%customize entries left, center and righjt %customize entries left, center and right
\lhead{} \lhead{}
\chead{ \small{Jan Küster $\cdot$ Kissinger Str. 31 $\cdot$ 28215, Bremen, Germany $\cdot$ \textcolor{sectcol}{\textbf{info@jankuester.com}} $\cdot$ +49 176 313 877 34}} \chead{ \small{Jan Küster $\cdot$ Kissinger Str. 31 $\cdot$ 28215, Bremen, Germany $\cdot$ \textcolor{sectcol}{\textbf{info@jankuester.com}} $\cdot$ +49 176 313 877 34}}
\rhead{} \rhead{}
%indentation is zero %indentation is zero
\setlength{\parindent}{0mm} \setlength{\parindent}{0mm}
%----------------------------------------------------------------------------------------
% TABLE /ARRAY DEFINITIONS
%----------------------------------------------------------------------------------------
%for layouting tables %for layouting tables
\usepackage{multicol} \usepackage{multicol}
\usepackage{multirow} \usepackage{multirow}
@ -115,8 +118,6 @@
>{\raggedleft\hspace{0pt}}p{#1}}% >{\raggedleft\hspace{0pt}}p{#1}}%
%---------------------------------------------------------------------------------------- %----------------------------------------------------------------------------------------
% GRAPHICS DEFINITIONS % GRAPHICS DEFINITIONS
%---------------------------------------------------------------------------------------- %----------------------------------------------------------------------------------------
@ -132,8 +133,6 @@
\usetikzlibrary{shapes, backgrounds,mindmap, trees} \usetikzlibrary{shapes, backgrounds,mindmap, trees}
%---------------------------------------------------------------------------------------- %----------------------------------------------------------------------------------------
% Color DEFINITIONS % Color DEFINITIONS
%---------------------------------------------------------------------------------------- %----------------------------------------------------------------------------------------
@ -149,9 +148,12 @@
%light background / accent color %light background / accent color
\definecolor{softcol}{RGB}{230,230,230} \definecolor{softcol}{RGB}{230,230,230}
%============================================================================% %============================================================================%
% %
% OVERRIDES %
% DEFINITIONS
%
% %
%============================================================================% %============================================================================%
@ -171,21 +173,16 @@
%remove section num %remove section num
\renewcommand{\thesection}{} \renewcommand{\thesection}{}
%============================================================================%
%
% DEFINITIONS
%
%============================================================================%
%---------------------------------------------------------------------------------------- %----------------------------------------------------------------------------------------
% ARROW GRAPHICS in Tikz % ARROW GRAPHICS in Tikz
%---------------------------------------------------------------------------------------- %----------------------------------------------------------------------------------------
% a six pointed arrow poiting to the left % a six pointed arrow poiting to the left
\newcommand{\tzlarrow}{(0,0) -- (0.2,0) -- (0.3,0.2) -- (0.2,0.4) -- (0,0.4) -- (0.1,0.2) -- cycle;} \newcommand{\tzlarrow}{(0,0) -- (0.2,0) -- (0.3,0.2) -- (0.2,0.4) -- (0,0.4) -- (0.1,0.2) -- cycle;}
%include the left arrow into a tikz picture % include the left arrow into a tikz picture
% param1: fill color % param1: fill color
%
\newcommand{\larrow}[1] \newcommand{\larrow}[1]
{\begin{tikzpicture}[scale=0.58] {\begin{tikzpicture}[scale=0.58]
\filldraw[fill=#1!100,draw=#1!100!black] \tzlarrow \filldraw[fill=#1!100,draw=#1!100!black] \tzlarrow
@ -195,8 +192,9 @@
% a six pointed arrow poiting to the right % a six pointed arrow poiting to the right
\newcommand{\tzrarrow}{ (0,0.2) -- (0.1,0) -- (0.3,0) -- (0.2,0.2) -- (0.3,0.4) -- (0.1,0.4) -- cycle;} \newcommand{\tzrarrow}{ (0,0.2) -- (0.1,0) -- (0.3,0) -- (0.2,0.2) -- (0.3,0.4) -- (0.1,0.4) -- cycle;}
%include the right arrow into a tikz picture % include the right arrow into a tikz picture
% param1: fill color % param1: fill color
%
\newcommand{\rarrow} \newcommand{\rarrow}
{\begin{tikzpicture}[scale=0.7] {\begin{tikzpicture}[scale=0.7]
\filldraw[fill=sectcol!100,draw=sectcol!100!black] \tzrarrow \filldraw[fill=sectcol!100,draw=sectcol!100!black] \tzrarrow
@ -206,11 +204,12 @@
%---------------------------------------------------------------------------------------- %----------------------------------------------------------------------------------------
%custom sections % custom sections
%---------------------------------------------------------------------------------------- %----------------------------------------------------------------------------------------
%create a coloured box with arrow and title as cv section headline % create a coloured box with arrow and title as cv section headline
% param 1: section title % param 1: section title
%
\newcommand{\cvsection}[1] \newcommand{\cvsection}[1]
{ {
\colorbox{sectcol}{\mystrut \makebox[1\linewidth][l]{ \colorbox{sectcol}{\mystrut \makebox[1\linewidth][l]{
@ -220,6 +219,7 @@
%create a coloured arrow with title as cv meta section section %create a coloured arrow with title as cv meta section section
% param 1: meta section title % param 1: meta section title
%
\newcommand{\metasection}[2] \newcommand{\metasection}[2]
{ {
\begin{tabular*}{1\textwidth}{p{2.4cm} p{11cm}} \begin{tabular*}{1\textwidth}{p{2.4cm} p{11cm}}
@ -228,15 +228,17 @@
} }
%---------------------------------------------------------------------------------------- %----------------------------------------------------------------------------------------
% CV EVENT % CV EVENT
%---------------------------------------------------------------------------------------- %----------------------------------------------------------------------------------------
%creates a stretched box as cv entry headline % creates a stretched box as cv entry headline followed by two paragraphs about
% the work you did
% param 1: event time i.e. 2014 or 2011-2014 etc. % param 1: event time i.e. 2014 or 2011-2014 etc.
% param 2: event name (what did you do?) % param 2: event name (what did you do?)
% param 3: institution (where did you work / study) % param 3: institution (where did you work / study)
% param 4: what was your position % param 4: what was your position
% param 5: some words about your contributions % param 5: some words about your contributions
%
\newcommand{\cvevent}[5] \newcommand{\cvevent}[5]
{ {
\vspace{8pt} \vspace{8pt}
@ -250,15 +252,13 @@
} }
%creates a stretched box as % creates a stretched box as
\newcommand{\cveventmeta}[2] \newcommand{\cveventmeta}[2]
{ {
\mbox{\mystrut \hspace{87pt}\textit{#1}}\\ \mbox{\mystrut \hspace{87pt}\textit{#1}}\\
#2 #2
} }
%---------------------------------------------------------------------------------------- %----------------------------------------------------------------------------------------
% CUSTOM STRUT FOR EMPTY BOXES % CUSTOM STRUT FOR EMPTY BOXES
%----------------------------------------- ----------------------------------------------- %----------------------------------------- -----------------------------------------------
@ -270,6 +270,8 @@
\newcommand{\lorem} \newcommand{\lorem}
{Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec a diam lectus.} {Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec a diam lectus.}
%============================================================================% %============================================================================%
% %
% %
@ -288,7 +290,6 @@
%---------------------------------------------------------------------------------------- %----------------------------------------------------------------------------------------
% HEADER IMAGE % HEADER IMAGE
%---------------------------------------------------------------------------------------- %----------------------------------------------------------------------------------------
\hspace{-74pt} \hspace{-74pt}
%\begin{figure}[htbp] %\begin{figure}[htbp]
% \begin{center} % \begin{center}
@ -301,14 +302,16 @@
%---------------------------------------------------------------------------------------- %----------------------------------------------------------------------------------------
\vspace{-20.55pt} \vspace{-20.55pt}
% for multiple words like working titles etc.
%\hspace{-0.25\linewidth}\colorbox{bgcol}{\makebox[1.5\linewidth][c]{\hspace{46pt}\HUGE{\textcolor{white}{\textsc{Jan Küster}} } \textcolor{sectcol}{\rule[-1mm]{1mm}{0.9cm}} \parbox[b]{5cm}{ \large{ \textcolor{white}{{Flex Developer}}}\\ %\hspace{-0.25\linewidth}\colorbox{bgcol}{\makebox[1.5\linewidth][c]{\hspace{46pt}\HUGE{\textcolor{white}{\textsc{Jan Küster}} } \textcolor{sectcol}{\rule[-1mm]{1mm}{0.9cm}} \parbox[b]{5cm}{ \large{ \textcolor{white}{{Flex Developer}}}\\
%\large{ \textcolor{white}{{Resume}}}} %\large{ \textcolor{white}{{Resume}}}}
%}} %}}
% for single words, e.g. CV or RESUME etc.
\hspace{-0.25\linewidth}\colorbox{bgcol}{\makebox[1.5\linewidth][c]{\HUGE{\textcolor{white}{\textsc{Jan Küster}} } \textcolor{sectcol}{\rule[-1mm]{1mm}{0.9cm}} \HUGE{\textcolor{white}{\textsc{Resume}} } }} \hspace{-0.25\linewidth}\colorbox{bgcol}{\makebox[1.5\linewidth][c]{\HUGE{\textcolor{white}{\textsc{Jan Küster}} } \textcolor{sectcol}{\rule[-1mm]{1mm}{0.9cm}} \HUGE{\textcolor{white}{\textsc{Resume}} } }}
%--------------------------------------------------------------------------------------- %---------------------------------------------------------------------------------------
% META SECTION % QR CODE (optional)
%---------------------------------------------------------------------------------------- %----------------------------------------------------------------------------------------
\vspace{-144pt} \vspace{-144pt}
\hspace{0.85\linewidth} \hspace{0.85\linewidth}
@ -316,18 +319,27 @@
\normalsize \normalsize
\vspace{88pt} \vspace{88pt}
%---------------------------------------------------------------------------------------
% META SECTION
%----------------------------------------------------------------------------------------
\metasection{Tools:}{Flex, AIR, Java, Processing, Git, Eclipse} \metasection{Tools:}{Flex, AIR, Java, Processing, Git, Eclipse}
\metasection{Concepts:}{Software Design, OOP-Pattern, Scrum, Usability, Accessibility} \metasection{Concepts:}{Software Design, OOP-Pattern, Scrum, Usability, Accessibility}
\metasection{Activities:}{Global Game Jam, Sound Engineering, Blender, Martial Arts} \metasection{Activities:}{Global Game Jam, Sound Engineering, Blender, Martial Arts}
%--------------------------------------------------------------------------------------- %---------------------------------------------------------------------------------------
% SUMMARAY % SUMMARAY (optional)
%---------------------------------------------------------------------------------------- %----------------------------------------------------------------------------------------
%\cvsection{Summary}\\ %\cvsection{Summary}\\
%Digital media graduate with four years project experience in the field of technology based assessment. Specialized in development of test-scenario engines and innovative, rich media item formats. Master studies focused on teams from different disciplines and cultural backgrounds on solutions for complex problems. Prior knowledge has been collected in he field of usability / accessibility during bachelor studies.\\ %Digital media graduate with four years project experience in the field of technology based assessment. Specialized in development of test-scenario engines and innovative, rich media item formats. Master studies focused on teams from different disciplines and cultural backgrounds on solutions for complex problems. Prior knowledge has been collected in he field of usability / accessibility during bachelor studies.\\
%============================================================================%
%
% CV SECTIONS AND EVENTS (MAIN CONTENT)
%
%============================================================================%
%--------------------------------------------------------------------------------------- %---------------------------------------------------------------------------------------
% EXPERIENCE % EXPERIENCE
%---------------------------------------------------------------------------------------- %----------------------------------------------------------------------------------------
@ -356,8 +368,6 @@
%-------------------------------------------------------------------------------------- %--------------------------------------------------------------------------------------
\cvsection{Education} \cvsection{Education}
% %
\cvevent{2012 - 2013}{Master Project - PrIMA}{University of Bremen}{Developing a touch table software for medical support (Java)}{Tasks: Server setup and administration, software design, implementation, testing} \cvevent{2012 - 2013}{Master Project - PrIMA}{University of Bremen}{Developing a touch table software for medical support (Java)}{Tasks: Server setup and administration, software design, implementation, testing}
@ -384,7 +394,11 @@
%============================================================================% %============================================================================%
% %
%
%
% DOCUMENT END % DOCUMENT END
% %
%
%
%============================================================================% %============================================================================%
\end{document} \end{document}