Guest User

Untitled

a guest
Dec 11th, 2018
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.23 KB | None | 0 0
  1. % Define an entry of cv information
  2. % Usage: cventry{<position>}{<title>}{<location>}{<date>}{<description>}
  3. newcommand*{cventry}[5]{%
  4. vspace{-2.0mm}
  5. setlengthtabcolsep{0pt}
  6. setlength{extrarowheight}{0pt}
  7. begin{tabular*}{textwidth}{@{extracolsep{fill}} L{textwidth - 4.5cm} R{4.5cm}}
  8. ifempty{#2#3}
  9. {entrypositionstyle{#1} & entrydatestyle{#4} \}
  10. {entrytitlestyle{#2} & entrylocationstyle{#3} \
  11. entrypositionstyle{#1} & entrydatestyle{#4} \}
  12. multicolumn{2}{L{textwidth}}{descriptionstyle{#5}}
  13. end{tabular*}%
  14. }
  15.  
  16. % A4 paper size by default, use 'letterpaper' for US letter
  17. documentclass[11pt, a4paper]{awesome-cv}
  18.  
  19. % Configure page margins with geometry
  20. geometry{left=1.4cm, top=.8cm, right=1.4cm, bottom=1.8cm, footskip=.5cm}
  21.  
  22. % Specify the location of the included fonts
  23. fontdir[fonts/]
  24.  
  25. % Color for highlights
  26. % Awesome Colors: awesome-emerald, awesome-skyblue, awesome-red, awesome-pink, awesome-orange
  27. % awesome-nephritis, awesome-concrete, awesome-darknight
  28. colorlet{awesome}{awesome-darknight}
  29. % Uncomment if you would like to specify your own color
  30. % definecolor{awesome}{HTML}{CA63A8}
  31.  
  32. % Colors for text
  33. % Uncomment if you would like to specify your own color
  34. % definecolor{darktext}{HTML}{414141}
  35. % definecolor{text}{HTML}{333333}
  36. % definecolor{graytext}{HTML}{5D5D5D}
  37. % definecolor{lighttext}{HTML}{999999}
  38.  
  39. % Set false if you don't want to highlight section with awesome color
  40. setbool{acvSectionColorHighlight}{false}
  41.  
  42. % If you would like to change the social information separator from a pipe (|) to something else
  43. renewcommand{acvHeaderSocialSep}{quadtextbarquad}
  44.  
  45. makeatletter
  46. patchcmd{@sectioncolor}{color}{mdseriescolor}{}{}
  47. makeatother
  48.  
  49. %-------------------------------------------------------------------------------
  50. % PERSONAL INFORMATION
  51. % Comment any of the lines below if they are not required
  52. %-------------------------------------------------------------------------------
  53. % Available options: circle|rectangle,edge/noedge,left/right
  54. % photo[rectangle,edge,right]{profile}
  55. name{}{}
  56. % position{{enskipcdotpenskip}}
  57. address{}
  58.  
  59. mobile{}
  60. email{}
  61. homepage{}
  62. % github{posquit0}
  63. % linkedin{posquit0}
  64. % gitlab{gitlab-id}
  65. % stackoverflow{SO-id}{SO-name}
  66. % twitter{@twit}
  67. % skype{skype-id}
  68. % reddit{reddit-id}
  69. % extrainfo{extra informations}
  70.  
  71. % quote{``Be the change that you want to see in the world."}
  72.  
  73.  
  74. %-------------------------------------------------------------------------------
  75. begin{document}
  76.  
  77. % Print the header with above personal informations
  78. % Give optional argument to change alignment(C: center, L: left, R: right)
  79. makecvheader[C]
  80.  
  81. % Print the footer with 3 arguments(<left>, <center>, <right>)
  82. % Leave any of these blank if they are not needed
  83. %makecvfooter
  84. % {today}
  85. % {Claud D. Park~~~·~~~Résumé}
  86. % {thepage}
  87.  
  88.  
  89. %-------------------------------------------------------------------------------
  90. % CV/RESUME CONTENT
  91. % Each section is imported separately, open each file in turn to modify content
  92. %-------------------------------------------------------------------------------
  93. %input{resume/summary.tex}
  94. input{resume/education.tex}
  95. input{resume/experience.tex}
  96. input{resume/projects.tex}
  97. input{resume/skills.tex}
  98. input{resume/presentation.tex}
  99.  
  100.  
  101.  
  102. %-------------------------------------------------------------------------------
  103. end{document}
Add Comment
Please, Sign In to add comment