Guest User

Untitled

a guest
Jan 5th, 2020
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. % Define an environment for cventry
  2. \newenvironment{cventries}{
  3. \vspace{\acvSectionContentTopSkip}
  4. \begin{center}
  5. }{%
  6. \end{center}
  7. }
  8. % Define an entry of cv information
  9. % Usage: \cventry{<position>}{<title>}{<location>}{<date>}{<description>}
  10. \newcommand*{\cventry}[5]{%
  11. \vspace{-3.0mm}
  12. \setlength\tabcolsep{0pt}
  13. \setlength{\extrarowheight}{0pt}
  14. \begin{tabular*}{\textwidth}{@{\extracolsep{\fill}} L{\textwidth - 4.5cm} R{4.5cm}}
  15. \ifempty{#2#3}
  16. {\entrypositionstyle{#1} & \entrydatestyle{#4} \\}
  17. {\entrytitlestyle{#2} & \entrylocationstyle{#3} \\
  18. \entrypositionstyle{#1} & \entrydatestyle{#4} \\}
  19. \multicolumn{2}{L{\textwidth}}{\descriptionstyle{#5}}
  20. \end{tabular*}%
  21. }
Advertisement
Add Comment
Please, Sign In to add comment