Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 4.17 KB | None | 0 0
  1. %-------------------------
  2. % Resume in Latex
  3. % Author : Sourabh Bajaj
  4. % Website: https://github.com/sb2nov/resume
  5. % License : MIT
  6. %------------------------
  7.  
  8. \documentclass[letterpaper,11pt]{article}
  9.  
  10. \usepackage{latexsym}
  11. \usepackage[empty]{fullpage}
  12. \usepackage{titlesec}
  13. \usepackage{marvosym}
  14. \usepackage[usenames,dvipsnames]{color}
  15. \usepackage{verbatim}
  16. \usepackage{enumitem}
  17. \usepackage[pdftex]{hyperref}
  18. \usepackage{fancyhdr}
  19.  
  20.  
  21. \pagestyle{fancy}
  22. \fancyhf{} % clear all header and footer fields
  23. \fancyfoot{}
  24. \renewcommand{\headrulewidth}{0pt}
  25. \renewcommand{\footrulewidth}{0pt}
  26.  
  27. % Adjust margins
  28. \addtolength{\oddsidemargin}{-0.375in}
  29. \addtolength{\evensidemargin}{-0.375in}
  30. \addtolength{\textwidth}{1in}
  31. \addtolength{\topmargin}{-.5in}
  32. \addtolength{\textheight}{1.0in}
  33.  
  34. \urlstyle{same}
  35.  
  36. \raggedbottom
  37. \raggedright
  38. \setlength{\tabcolsep}{0in}
  39.  
  40. % Sections formatting
  41. \titleformat{\section}{
  42.  \vspace{-4pt}\scshape\raggedright\large
  43. }{}{0em}{}[\color{black}\titlerule \vspace{-5pt}]
  44.  
  45. %-------------------------
  46. % Custom commands
  47. \def \ifempty#1{\def\temp{#1} \ifx\temp\empty }
  48.  
  49. \newcommand{\resumeItem}[2]{
  50.  \item\small{
  51.     \ifempty{#1}#2\else\textbf{#1}{: #2 \vspace{-2pt}}\fi
  52.  }
  53. }
  54.  
  55. \newcommand{\resumeSubheading}[4]{
  56.  \vspace{-1pt}\item
  57.    \begin{tabular*}{0.97\textwidth}{l@{\extracolsep{\fill}}r}
  58.      \textbf{#1} & #2 \\
  59.      \textit{\small#3} & \textit{\small #4} \\
  60.    \end{tabular*}\vspace{-5pt}
  61. }
  62.  
  63. \newcommand{\resumeSubItem}[2]{\resumeItem{#1}{#2}\vspace{-4pt}}
  64.  
  65. \renewcommand{\labelitemii}{$\circ$}
  66.  
  67. \newcommand{\resumeSubHeadingListStart}{\begin{itemize}[leftmargin=*]}
  68. \newcommand{\resumeSubHeadingListEnd}{\end{itemize}}
  69. \newcommand{\resumeItemListStart}{\begin{itemize}}
  70. \newcommand{\resumeItemListEnd}{\end{itemize}\vspace{-5pt}}
  71.  
  72. %-------------------------------------------
  73. %%%%%%  CV STARTS HERE  %%%%%%%%%%%%%%%%%%%%%%%%%%%%
  74.  
  75.  
  76. \begin{document}
  77.  
  78. %----------HEADING-----------------
  79. \begin{tabular*}{\textwidth}{l@{\extracolsep{\fill}}r}
  80.  \textbf{\Large Alexander Mordovskiy} & Email : \href{mailto:st044596@student.spbu.ru}{st044596@student.spbu.ru}\\
  81.  \href{https://github.com/iammorjj}{https://github.com/iammorjj} & Mobile : +79522795330 \\
  82. \end{tabular*}
  83.  
  84.  
  85. %-----------EDUCATION-----------------
  86. \section{Education}
  87.  \resumeSubHeadingListStart
  88.    \resumeSubheading
  89.      {SPbSU, Mathematics and Mechanics Faculty}{}
  90.      {Mechanics and Mathematical Modeling Program}{Sept. 2017 - present}
  91.   \resumeSubHeadingListEnd
  92.  
  93.  
  94. %-----------EXPERIENCE-----------------
  95. \section{Experience}
  96.  \resumeSubHeadingListStart
  97.    \resumeSubheading
  98.      {Junior Software Engineer}{DaleSoft}
  99.      {C++, SQL; Mobile Dev.}{Feb. 2018 - May 2019}
  100.      \resumeItemListStart
  101.         \resumeItem{}
  102.          {Supported and added features to automation system (JTI-Petro SAP product).\linebreak
  103.          System ensures import and export shipments.\linebreak
  104.          Used C++, MS SQL Server.}
  105.        \resumeItem{}
  106.          {Created small SSIS scripts (C\#).}
  107.        \resumeItem{}
  108.          {Participated in mobile development iOS (Swift) and Android (Kotlin)\linebreak
  109.          for a travel agency order.\linebreak
  110.          Used MVC pattern. Network calls via RPC API (interface was provided).}
  111.      \resumeItemListEnd
  112.        \resumeSubheading
  113.      {Experience 2}{Some Place}
  114.      {Short Description}{Sept. 2018 - Dec. 2018}
  115.      \resumeItemListStart
  116.         \resumeItem{}
  117.          {Some stuff}
  118.        \resumeItem{}
  119.          {More stuff}
  120.      \resumeItemListEnd
  121.    
  122.  \resumeSubHeadingListEnd
  123.  
  124. \section{Some Section}
  125.  \resumeSubHeadingListStart
  126.    \resumeSubheading
  127.      {Some Stuff}{}
  128.      {Some Description}{Dec. 2016}
  129.      \resumeItemListStart
  130.        \resumeItem{}
  131.          {Some stuff}
  132.        \resumeItem{}
  133.          {More stuff}
  134.       \resumeItemListEnd
  135.   \resumeSubHeadingListEnd
  136. %
  137. %--------PROGRAMMING SKILLS------------
  138. \section{Programming Skills}
  139. \resumeSubHeadingListStart
  140.   \item{
  141.     \textbf{Languages}{: C++, Python }
  142.     \hfill
  143.     \textbf{Technologies}{: Git, Kubernetes }
  144.   }
  145.  \resumeSubHeadingListEnd
  146.  
  147.  
  148. %-------------------------------------------
  149. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement