Advertisement
Guest User

Untitled

a guest
May 11th, 2017
542
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.99 KB | None | 0 0
  1. \documentclass[a4paper,11pt]{article} % Default font size and paper size
  2.  
  3. \usepackage[T1]{fontenc}
  4. \usepackage[utf8]{inputenc}
  5.  
  6. \renewcommand*\rmdefault{ppl} % Palatino font
  7.  
  8. %\usepackage{xunicode,xltxtra,url,parskip} % Formatting packages
  9.  
  10. \usepackage[usenames,dvipsnames]{xcolor} % Required for specifying custom colors
  11.  
  12. \usepackage{fullpage}
  13. % To reduce the height of the top margin uncomment:
  14. \addtolength{\voffset}{-1.3cm}
  15.  
  16. \usepackage{fancyhdr}
  17. \fancyhf{}
  18. \fancyhead[C]{\Huge Piotr \textsc{Zięcina}}
  19. \fancyfoot[L]{\footnotesize{I hereby give consent for my personal data included in my application to be processed for the purposes of the recruitment process under the Personal Data Protection Act as of 29 August 1997, consolidated text: Journal of Laws 2016, item 922 as amended.}}
  20. \setlength{\headheight}{30pt}
  21. \setlength{\headsep}{11pt}
  22. \renewcommand{\headrulewidth}{0pt}
  23. % \renewcommand{\footrulewidth}{0.4pt}
  24.  
  25. \usepackage{hyperref} % Required for adding links and customizing them
  26. % \definecolor{linkcolour}{rgb}{0.0,0.2,0.8} % Link color
  27. \definecolor{linkcolour}{rgb}{0.0,0.2,0.4} % Link color
  28. \hypersetup{colorlinks,breaklinks,urlcolor=linkcolour,linkcolor=linkcolour} % Set link colors throughout the document
  29.  
  30. \usepackage{titlesec} % Used to customize the \section command
  31. \titleformat{\section}{\Large\scshape\raggedright}{}{0em}{}[\titlerule\vspace{0.5\baselineskip}] % Text formatting of sections
  32. \titlespacing{\section}{0pt}{3pt}{0pt} % Spacing around sections
  33.  
  34. \usepackage{enumitem} % Used for lists
  35.  
  36. % Make sentence spacing single spaced
  37. \frenchspacing
  38.  
  39. \def \datecolumnwidth {1.5in}
  40.  
  41. \begin{document}
  42.  
  43. \pagestyle{fancyplain}
  44.  
  45. %----------------------------------------------------------------------------------------
  46. % PERSONAL INFORMATION
  47. \section{Personal Data}
  48.  
  49. \begin{tabular}{rl}
  50. \textsc{Date of Birth:} & 5 August 1994 \\
  51. \textsc{Address:} & Marchołta 22, 03-110 Warsaw, Poland \\
  52. \textsc{Phone:} & +48 669 370 014\\
  53. \textsc{email:} & \href{mailto:pziecin@gmail.com}{pziecin@gmail.com} \\
  54. \textsc{GitHub:} & \href{https://github.com/pziecin}{pziecin} \\
  55. \end{tabular}
  56.  
  57. %----------------------------------------------------------------------------------------
  58. % EXPERIENCE
  59. %----------------------------------------------------------------------------------------
  60.  
  61. \section{Experience}
  62.  
  63. \begin{tabular}{p{\datecolumnwidth}p{10cm}}
  64. \textsc{Oct 2014 -- Apr 2017}
  65. &
  66. \Large{\textbf{Projects}}
  67. \begin{description}[
  68. style=nextline, % label styling
  69. format=\normalfont\textsc,
  70. leftmargin=17pt % description indent, seems to fit with all sections
  71. ]
  72. \item[Objective single linked list with GUI in QT -> (C++)]
  73. I have used GUI in QT to connect it with single linked list with objects birds.
  74. You can add birds to your list and delete them from the GUI field.
  75. \item[2D Platform Game path - > (Java)]
  76. 2D tile map game with simple controlling made in GUI widget toolkit Swing.
  77. \item[ID3 tag Converter in MP3 -> (C)]
  78. Program to edit your last ID3 tags in MP3. You can give path to your mp3 file and edit your tags.
  79. \item[Websites -> (HTML/CSS)]
  80. Simple websites with few divs and css sheet.
  81. \end{description}
  82.  
  83. \end{tabular}
  84.  
  85. %----------------------------------------------------------------------------------------
  86. % EDUCATION
  87. %----------------------------------------------------------------------------------------
  88.  
  89. \section{Education}
  90.  
  91. \begin{tabular}{p{\datecolumnwidth}l}
  92. \textsc{2014 -- present} & \textsl{B.Sc.} in \textsc{Telecommunications} \\
  93. & Warsaw University of Technology \\ & Faculty of Electronics and Information Technology
  94. \end{tabular}
  95.  
  96.  
  97. %----------------------------------------------------------------------------------------
  98. % SKILLS
  99. %----------------------------------------------------------------------------------------
  100.  
  101. \section{Skills}
  102.  
  103. \begin{description}[
  104. style=nextline, % label styling
  105. format=\normalfont\textsc,
  106. labelindent=3pt,
  107. leftmargin=17pt % description indent, seems to fit with all sections
  108. ]
  109. \item[Programming languages]
  110. Working knowledge of Java and C++.
  111. \item[Databases]
  112. SQL basics
  113. \end{description}
  114.  
  115.  
  116. %----------------------------------------------------------------------------------------
  117. % LANGUAGES
  118. %----------------------------------------------------------------------------------------
  119.  
  120. \section{Languages}
  121.  
  122. Polish, communicative in English (B2 exam), German basics
  123.  
  124. %----------------------------------------------------------------------------------------
  125. % INTERESTS AND ACTIVITIES
  126. %----------------------------------------------------------------------------------------
  127.  
  128. \section{Interests}
  129.  
  130. Psychology, FPS gaming, Hardware, Smartphones.
  131.  
  132. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement