posquit0 / Awesome-CV

:page_facing_up: Awesome CV is LaTeX template for your outstanding job application
LaTeX Project Public License v1.3c
23.03k stars 4.79k forks source link

How to make cvitems two bullet points per row? #201

Closed kelvinluime closed 6 years ago

kelvinluime commented 6 years ago

I am completely new to latex. Currently, when I use cvitems:

%Define an environment for cvitems(for cventry)
\newenvironment{cvitems}{
  \vspace{-4mm}
  \begin{justify}
  \begin{itemize}[leftmargin=2ex, nosep, noitemsep]
    \setlength{\parskip}{0pt}
    \renewcommand{\labelitemi}{\bullet}
}{
  \end{itemize}
  \end{justify}
  \vspace{-2mm}
}

All the items are listed as follow:

What modifications to the above code can I make so that the list can look like this?

Here is how I use cvitems in the tex file:

{\begin{cvitems}
        \item {item A}
        \item {item B}
        \end{cvitems}}