I am trying to learn Latex, but struggling to achieve what I want.
I want to learn Latex using the awesome-cv template and customizing it.
I want to achieve this:
So I tried to modify the template:
%---------------------------------------------------------
\cventry
{Manager, XYZ} % Job title
{ZYX} % Organization
{Foo} % Location
{Apr 2016 - Present} % Date(s)
{
General description of work
Career:
\begin{cvitems} % Description(s) of tasks/responsibilities
\item {Manager: Jan 2017 - now}
\item {Senior Consultant: Apr 2016 - Jan 2017}
\end{cvitems}
Projects:
\begin{cvitems} % Description(s) of tasks/responsibilities
\item {IFRS 9}
\item {BI}
\item {Back-office}
\end{cvitems}
}
\end{cventries}
The result is this:
I know that I need to modify this part, but I don't know what to do:
\newcommand*{\cventry}[5]{%
\vspace{-2.0mm}
\setlength\tabcolsep{0pt}
\setlength{\extrarowheight}{0pt}
\begin{tabular*}{\textwidth}{@{\extracolsep{\fill}} L{\textwidth - 4.5cm} R{4.5cm}}
\ifempty{#2#3}
{\entrypositionstyle{#1} & \entrydatestyle{#4} \\}
{\entrytitlestyle{#2} & \entrylocationstyle{#3} \\
\entrypositionstyle{#1} & \entrydatestyle{#4} \\}
\multicolumn{2}{L{\textwidth}}{\descriptionstyle{#5}}
\end{tabular*}%
}


