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 add subitems #219

Closed Unous1996 closed 2 years ago

Unous1996 commented 6 years ago

How to add subitems to each items in each experience, like:

experience1

Nippius commented 5 years ago

I just had this issue today and it's actually quite easy. You just need to use the command \begin{itemize} on the same level as \item.

For example, this code:

\begin{cvitems}
        \item {A}
         \begin{itemize}
            \item {B}
            \item {C}
        \end{itemize}
        \item {D}
    \end{cvitems}

Will give the following output:

image

Note: I only tested this for \cventry

OJFord commented 2 years ago

Thanks for answering that Nippius (I won't ping after so long!) - closing as I assume not least from the thumbs up that this is fine.