Initial commit

This commit is contained in:
muratcankaracabey 2020-04-15 22:00:27 +02:00
commit 5a5dd7c886
2 changed files with 261 additions and 0 deletions

82
CV.tex Normal file
View File

@ -0,0 +1,82 @@
\documentclass{muratcan_cv}
\setname{Murat Can}{Karacabey}
\setaddress{Munich/Germany}
\setmobile{xx xxx xx xx}
\setmail{muratcankaracabey@gmail.com}
\setposition{Work Student} %ignored for now
\setlinkedinaccount{https://www.linkedin.com/in/murat-can-karacabey-568a96b1/} %you can play with color of the template (red is also nice..)
\setgithubaccount{https://github.com/muratcankaracabey} %you can play with color of the template (red is also nice..)
\setthemecolor{red} %you can play with color of the template (red is also nice..)
\begin{document}
%Set variables
%You can add sections, texts, explanations just by copying the style below. Replace the dummy texts "\lipsum[1][x-x]\par" with actual texts.
%Create header
\headerview
\vspace{1ex}
%Sections
%
% Summary
\addblocktext{Summary}{%
\lipsum[1][1-12]\par
}
%
%Education
\section{Education}
\datedexperience{Boğaziçi University}{2013-2018}
\explanation{B.S in Computer Engineering}
\datedexperience{Technical University of Munich}{2019-2022}
\explanation{M.S in Informatics}
%
% Experience
\section{Experience}
%
\datedexperience{Intertech Inc.}{2014-Summer / Turkey}
\explanation{Intern as android developer}
%
\datedexperience{Velocity Inc.}{2015-Summer / Turkey}
\explanation{Intern as Developer/Tester}
%
\datedexperience{Akbank}{2018-2019 / Turkey}
\explanation{Ios Developer}
\explanationdetail{\coloredbullet\ \lipsum[1][1-2]\par}
%
\datedexperience{Mobile-Software AG}{2019-2020 / Germany}
\explanation{Ios Developer}
\explanationdetail{\coloredbullet\ \lipsum[1][4-5]\par.}
%
\datedexperience{BMW Autonomous Driving Campus}{2020-Now / Germany}
\explanation{Working Student}
\explanationdetail{\coloredbullet\ \lipsum[1][3-4]\par}
%
% Skills
\section{Skills}
%
\newcommand{\skillone}{\createskill{Programming Languages}{\textbf{\emph{Experienced:}} \ \ Python \cpshalf Swift \ \ \textbf{\emph{Familiar:}} \ \ Javascript \cpshalf Objective-C \cpshalf Bash \cpshalf Java \cpshalf Scheme}}
%
\newcommand{\skilltwo}{\createskill{Software Development}{Programming Paradigms \cpshalf GIT \cpshalf CLI \cpshalf Agile Methodology \cpshalf DevOps Lifecycles}}
%
\newcommand{\skillthree}{\createskill{Frameworks \ \& \ Libraries}{Jupyter \cpshalf Matplotplib \cpshalf Numpy \cpshalf Pandas \cpshalf Scikit-learn \cpshalf Gym \cpshalf PyTorch \cpshalf Tensorflow}}
%
\newcommand{\skillfour}{\createskill{iOS Programming}{RxSwift \cpshalf PromiseKit \cpshalf CocoaPods \cpshalf Autolayout/DSLs}}
%
\newcommand{\skillfive}{\createskill{Languages}{\textbf{\emph{Native:}} \ \ Turkish \ \ \textbf{\emph{Fluent:}} \ \ English \ \ \textbf{\emph{Beginner:}} \ \ German }}
%
\createskills{\skillone, \skilltwo, \skillthree, \skillfour, \skillfive}
%
% Experience
\section{Extra}
\newcommand{\extraone}{\lipsum[1][7-8]\par}
%
\newcommand{\extratwo}{\lipsum[1][9-10]\par}
%
\newcommand{\extrathree}{\lipsum[1][11-12]\par}
%
\newcommand{\listofextras}{\extraone, \extratwo, \extrathree}
%
\createbullets{\listofextras}
%
%Footnote
\createfootnote
\end{document}

179
muratcan_cv.cls Normal file
View File

@ -0,0 +1,179 @@
% Created by Murat Can Karacabey
% this is inspired by Michael Pollind's Awesome CV
% Created from scratch as a much simpler alternative to it to actually learn LaTeX.
% Might be interpreted as an easier-to-edit or easier-to-understand-what-is-going-on version of it.
\author{Murat Can Karacabey}
\RequirePackage[dvipsnames]{xcolor} % moved here I guess article class causes option clash with xcolor if used after loading the class
\LoadClass[10pt]{article}
\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{muratcan_cv}[2020/04/15 Muratcan CV Class]
\RequirePackage[sfdefault]{noto}
\RequirePackage{etoolbox}
\RequirePackage{pgffor}
\RequirePackage{titlesec}
\RequirePackage{tikz}
\RequirePackage{fontspec}
\RequirePackage[left=0.75in,top=0.4in,right=0.75in,bottom=0.6in]{geometry} % Document margins
\RequirePackage{hyperref}
\RequirePackage{fontawesome}
\RequirePackage{mfirstuc}
\RequirePackage{ifthen}
\RequirePackage{lipsum}
\pagestyle{empty}
%Setup
\newcommand*{\setname}[2]{\def\@firstname{#1}\def\@lastname{#2}}
\newcommand*{\setaddress}[1]{\def\@address{#1}}
\newcommand*{\setmobile}[1]{\def\@mobile{#1}}
\newcommand*{\setposition}[1]{\def\@position{#1}}
\newcommand*{\setmail}[1]{\def\@mail{#1}}
\newcommand*{\setthemecolor}[1]{\def\@themecolor{#1}}
\newcommand*{\setlinkedinaccount}[1]{\def\@linkedinaccount{#1}}
\newcommand*{\setgithubaccount}[1]{\def\@githubaccount{#1}}
\hypersetup{
colorlinks=true,
urlcolor=cyan,
}
% View commands
% Header
% can makebox also be used?
\newcommand\headerview{
\begin{minipage}{0.25\linewidth}
\profpic{0.22}{images/profilpicture}
\end{minipage}%
\hfill
\begin{minipage}{0.45\linewidth}
\center \name \\[0.05cm]
\contact % address \ mobile \\ mail
\end{minipage}
}
%profilpicture
\newsavebox{\picbox}
\newcommand{\profpic}[2]{%
\savebox{\picbox}{%
\includegraphics[scale=#1]{#2}}%
\tikz\node [draw, circle,%
line width=4pt, color=white,%
minimum width=\wd\picbox,minimum height=\ht\picbox,%
path picture={ \node at (path picture bounding box.center)%
{\usebox{\picbox}};}]%
{};}
%contactsubviews
\newcommand{\githubview}{\href{\@linkedinaccount}{\faLinkedinSquare\ \footnotesize linkedin}}
\newcommand{\linkedinview}{\href{\@githubaccount}{\faGithubSquare\ \footnotesize github}}
\newcommand{\name}{%
{\large \@firstname \ \textsc{\@lastname}}
}
\newcommand{\contact}{%
{\small \@address \cps \@mobile \\ \@mail%
\\%
\linkedinview \cps \githubview \\
} %
}
% Helper commands
\newcommand\ruleafter[1]{#1~{\color{black!60!\@themecolor}\hrulefill}} % a trick to put the line with <before> parameter in \titleformat
%colorfulpipeseperator
\newcommand{\cps}{{\color{\@themecolor} \quad\textbar\quad}}
\newcommand{\cpshalf}{{\color{\@themecolor} \hspace{0.5em}\textbar\hspace{0.5em}}}
\newcommand{\coloredbullet}{{\color{\@themecolor} \textbullet}}
% Edit section styles
\titleformat{\section} % Customise the \section command
{\large\bfseries\scshape\raggedright\color{\@themecolor}} % Make the \section headers large (\Large),
% small capitals (\scshape) and left aligned (\raggedright)
{}{0em} % Can be used to give a prefix to all sections, like 'Section ...'
{\ruleafter} % Can be used to insert code before the heading
\titlespacing*{\section}{0pt}{0pt}{4pt}
% Textview commands
\newcommand{\experience}[2]{%
\mbox { \hspace{1em} \scshape \textbf{#1} }%
}
\newcommand{\datetext}[1]{%
{\itshape \footnotesize \mdseries \color{black!60!\@themecolor} #1 }
}
\newcommand{\datedexperience}[2]{%
\begin{small} \mbox { \hspace{1em} \scshape \textbf{#1} } \end{small} \hfill \datetext{#2}\\[0.25ex] %
}
\newcommand{\explanation}[1]{%
\noindent \mbox { \scshape \hspace{1.2em} \footnotesize #1}\\[0.25ex]
}
\newcommand{\explanationdetail}[1]{%
\begin{minipage}{\linewidth} \hspace{1.5em} \footnotesize #1 \end{minipage} \\[0.75ex]
}
\newcommand{\simpletext}[1]{%
\begin{minipage}{\linewidth} \footnotesize #1 \end{minipage}
}
\newcommand{\itemwithtext}[1]{%
\begin{minipage}{\linewidth} \footnotesize \item #1 \end{minipage}
}
\newcommand{\addblocktext}[2]{%
\section{#1}
\explanationdetail{#2}
}
\newcommand\createskill[2]{%
\textsc{\textbf{#1}} & #2
}
\newcommand\createtablecontent[1]{%
\foreach \x [count=\xi] in {#1} {\ifthenelse{\xi=1}{\x}{\\ \x}}
}
\newcommand\createskillsanothertry[1]{%not used
\begin{tabular}{r|l}
\createtablecontent{#1}
\end{tabular}
}
\newcommand\createskills[1]{%
\explanationdetail{
\begin{tabular}{rl}
\makeatletter
\@for\thisitem:=#1\do{\thisitem\\}
\makeatother
\end{tabular}
}
}
\newcommand\createbullets[1]{%
\renewcommand{\labelitemi}{\coloredbullet}
\begin{itemize}
\makeatletter
\@for\thisitem:=#1\do{\itemwithtext{\thisitem}}
\makeatother
\end{itemize}
}
\newcommand\createfootnote{%
\renewcommand{\footnotesize}{\fontsize{7pt}{11pt}\selectfont}
\renewcommand\footnoterule{\rule{0.3\linewidth}{0.5pt}}
\let\thefootnote\relax\footnote{\today\ / \href{https://github.com/muratcankaracabey/latex_cv}{source code}}}