Advertisement
Guest User

Untitled

a guest
Jul 26th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.52 KB | None | 0 0
  1. documentclass[a4paper,10pt]{article}
  2.  
  3. %A Few Useful Packages
  4. usepackage{marvosym}
  5. usepackage{fontspec} %for loading fonts
  6. usepackage{xunicode,xltxtra,url,parskip} %other packages for formatting
  7. RequirePackage{color,graphicx}
  8. usepackage[usenames,dvipsnames]{xcolor}
  9. usepackage[big]{layaureo} %better formatting of the A4 page
  10. % an alternative to Layaureo can be ** usepackage{fullpage} **
  11. usepackage{supertabular} %for Grades
  12. usepackage{titlesec} %custom section
  13.  
  14. %Setup hyperref package, and colours for links
  15. usepackage{hyperref}
  16. definecolor{linkcolour}{rgb}{0,0.2,0.6}
  17. hypersetup{colorlinks,breaklinks,urlcolor=linkcolour, linkcolor=linkcolour}
  18. %add external pdf pages
  19. usepackage{pdfpages}
  20.  
  21. usepackage{graphicx}
  22.  
  23. %FONTS
  24. defaultfontfeatures{Mapping=tex-text}
  25. %setmainfont[SmallCapsFont = Fontin SmallCaps]{Fontin}
  26. %%% modified for Karol Kozioł for ShareLaTeX use
  27. setmainfont[
  28. SmallCapsFont = Fontin-SmallCaps.otf,
  29. BoldFont = Fontin-Bold.otf,
  30. ItalicFont = Fontin-Italic.otf
  31. ]
  32. {Fontin.otf}
  33. %%%
  34.  
  35. %CV Sections inspired by:
  36. %http://stefano.italians.nl/archives/26
  37. titleformat{section}{Largescshaperaggedright}{}{0em}{}[titlerule]
  38. titlespacing{section}{0pt}{3pt}{3pt}
  39. %Tweak a bit the top margin
  40. %addtolength{voffset}{-1.3cm}
  41.  
  42. %Italian hyphenation for the word: ''corporations''
  43. hyphenation{im-pre-se}
  44.  
  45. %-------------WATERMARK TEST [**not part of a CV**]---------------
  46. usepackage[absolute]{textpos}
  47.  
  48. setlength{TPHorizModule}{30mm}
  49. setlength{TPVertModule}{TPHorizModule}
  50. textblockorigin{2mm}{0.65paperheight}
  51. setlength{parindent}{0pt}
  52.  
  53. %--------------------BEGIN DOCUMENT----------------------
  54. begin{document}
  55.  
  56. pagestyle{empty} % non-numbered pages
  57.  
  58. fontfb=''[cmr10]'' %for use with LaTeX command
  59.  
  60. %--------------------TITLE-------------
  61. begin{center} % just for vertical spacing and killing indent
  62. begin{tabular*}{textwidth}{@{}l@{extracolsep{fill}}r@{}}
  63. includegraphics[scale=0.072]{photo.jpg}&Huge Hugo textsc{}\
  64. end{tabular*}
  65. end{center}
  66.  
  67. %--------------------SECTIONS-----------------------------------
  68. %Section: Personal Data
  69. section{Personal Data}
  70.  
  71. begin{tabular}{rl}
  72. textsc{Place and Date of Birth:} & UK | 31 April 1978 \
  73. % textsc{Address:} & UK \
  74. textsc{Address:} & UK \
  75. textsc{Phone:} & \
  76. textsc{email:} & \
  77. % textsc{Tax code:} & \
  78. % textsc{Skype:} & \
  79. textsc{LinkedIn:} & \
  80. end{tabular}
  81.  
  82. section{Languages}
  83. begin{tabular}{rl}
  84. textsc{English:}&Mothertongue\
  85. textsc{Spanish:}&Intermediate Knowledge\
  86. end{tabular}
  87.  
  88. section{Communicative and Organizational Skills}
  89. begin{itemize}
  90. item ------------.
  91. item -----------------.
  92. item ----------.
  93. end{itemize}
  94.  
  95. section{Computer Skills}
  96. begin{tabular}{rl}
  97. Advanced knowledge:& Microsoft Windows OSs, Unix-like OSs, OpenOffice.org package, \& Microsoft Office package (Excel, Word, PowerPoint)\
  98.  
  99. end{tabular}
  100.  
  101. section{Interests and Activities}
  102. begin{itemize}
  103. item Traveling,
  104. item Go-karting,
  105. end{itemize}
  106.  
  107. vspace{25pt}
  108.  
  109. textit{I authorize the handling of personal information}
  110.  
  111. vspace{32pt}
  112.  
  113. begin{tabular}{rl}
  114. hspace{30pt} , 27/04/2016 & hspace{150pt}textit{}\ & hspace{120pt} includegraphics[scale=0.1]{firm.png}\
  115. end{tabular}
  116.  
  117.  
  118. newpage
  119. par{centeringLarge hypertarget{grds}{Master of Science in textsc{Engineering}}par}large{centering Gradespar}normalsize
  120. begin{center}
  121. begin{tabular}{lcc}
  122. multicolumn{1}{c}{textsc{Exam}}&textsc{Grade}&textsc{Credit Hrs}\ hline
  123. INSTRUMENTATION LABORATORY & 26& 6\
  124.  
  125.  
  126. & Total&120\cline{2-3}
  127. &textsc{Gpa}&textbf{26.7}
  128. end{tabular}
  129. end{center}
  130. bigskip
  131.  
  132.  
  133. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement