abhaypatil2000

resume.cls

Jul 15th, 2020
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. \ProvidesClass{resume}[2017/01/08 CV class]
  2. \LoadClass{article}
  3. \NeedsTeXFormat{LaTeX2e}
  4.  
  5. %----------------------------------------------------------------------------------------
  6. % REQUIRED PACKAGES
  7. %----------------------------------------------------------------------------------------
  8.  
  9. \RequirePackage[sfdefault]{ClearSans}
  10. \RequirePackage[T1]{fontenc}
  11. \RequirePackage{tikz}
  12. \RequirePackage{xcolor}
  13. \RequirePackage[absolute,overlay]{textpos}
  14. \RequirePackage{ragged2e}
  15. \RequirePackage{etoolbox}
  16. \RequirePackage{ifmtarg}
  17. \RequirePackage{ifthen}
  18. \RequirePackage{pgffor}
  19. \RequirePackage{marvosym}
  20. \RequirePackage{parskip}
  21.  
  22. \DeclareOption*{\PassOptionsToClass{\CurrentOption}{article}}
  23. \ProcessOptions\relax
  24.  
  25.  
  26. %----------------------------------------------------------------------------------------
  27. % SMALL LIST ENVIRONMENT
  28. %----------------------------------------------------------------------------------------
  29.  
  30.  
  31. % New environment for the small list
  32. \newenvironment{twentyshort}{%
  33. \begin{tabular*}{\textwidth}{@{\extracolsep{\fill}}ll}
  34. }{%
  35. \end{tabular*}
  36. }
  37.  
  38. \newcommand{\twentyitemshort}[2]{%
  39. #1&\parbox[t]{0.70\textwidth}{%
  40. \textbf{#2}%
  41. }\\
  42. }
  43.  
  44. %----------------------------------------------------------------------------------------
  45. % MARGINS AND LINKS
  46. %----------------------------------------------------------------------------------------
  47.  
  48. \RequirePackage[left=7.6cm,top=0.1cm,right=1cm,bottom=0.2cm,nohead,nofoot]{geometry}
  49.  
  50. \RequirePackage{hyperref}
Add Comment
Please, Sign In to add comment