Advertisement
Guest User

Untitled

a guest
Sep 11th, 2017
486
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.69 KB | None | 0 0
  1. documentclass{scrartcl}
  2.  
  3. reversemarginpar % Move the margin to the left of the page
  4.  
  5. newcommand{MarginText}[1]{marginpar{raggedleftitshapesmall#1}} % New command defining the margin text style
  6.  
  7. usepackage[nochapters]{classicthesis} % Use the classicthesis style for the style of the document
  8. usepackage[LabelsAligned]{currvita} % Use the currvita style for the layout of the document
  9.  
  10. renewcommand{cvheadingfont}{LARGEcolor{Maroon}} % Font color of your name at the top
  11.  
  12. usepackage{hyperref} % Required for adding links and customizing them
  13. hypersetup{colorlinks, breaklinks, urlcolor=Maroon, linkcolor=Maroon} % Set link colors
  14.  
  15. newlength{datebox}settowidth{datebox}{Spring 2011} % Set the width of the date box in each block
  16.  
  17. newcommand{NewEntry}[3]{noindenthangindent=2emhangafter=0 parbox{datebox}{small textit{#1}}hspace{1.5em} #2 #3 % Define a command for each new block - change spacing and font sizes here: #1 is the left margin, #2 is the italic date field and #3 is the position/employer/location field
  18. vspace{0.5em}} % Add some white space after each new entry
  19.  
  20. newcommand{Description}[1]{hangindent=2emhangafter=0noindentraggedrightfootnotesize{#1}parnormalsizevspace{1em}} % Define a command for descriptions of each entry - change spacing and font sizes here
  21.  
  22. begin{document}
  23.  
  24. thispagestyle{empty} % Stop the page count at the bottom of the first page
  25.  
  26. begin{cv}{spacedallcaps{John Smith}}vspace{1.5em} % Your name
  27.  
  28. noindentspacedlowsmallcaps{Personal Information}vspace{0.5em} % Personal information heading
  29.  
  30. NewEntry{}{textit{Born in Canada,}}{20 November 1987} % Birthplace and date
  31.  
  32. NewEntry{email}{href{mailto:john@smith.com}{john@smith.com}} % Email address
  33.  
  34. NewEntry{website}{href{http://www.johnsmith.com}{http://www.johnsmith.com}} % Personal website
  35.  
  36. NewEntry{phone}{(H) +1 (000) 111 1111 $cdotp$ (M) +1 (000) 111 1112} % Phone number(s)
  37.  
  38. vspace{1em} % Extra white space between the personal information section and goal
  39.  
  40. noindentspacedlowsmallcaps{Goal}vspace{1em} % Goal heading, could be used for a quotation or short profile instead
  41.  
  42. Description{Gain fundamental experience in my area of interest and expertise.}vspace{2em} % Goal text
  43.  
  44. noindentspacedlowsmallcaps{Work Experience}vspace{1em}
  45.  
  46. NewEntry{2012--Present}{1textsuperscript{st} Year Analyst, textsc{Lehman Brothers}}
  47.  
  48. Description{MarginText{Lehman Brothers}Developed spreadsheets for risk analysis on exotic derivatives on a wide array of commodities (ags, oils, precious and base metals), managed blotter and secondary trades on structured notes, liaised with Middle Office, Sales and Structuring for bookkeeping. \ Reference: John textsc{McDonald} $cdotp$ +1 (000) 111 1111 $cdotp$ href{mailto:john@lehman.com}{john@lehman.com}}
  49.  
  50. end{cv}
  51.  
  52. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement