diff --git a/awesome-cv.cls b/awesome-cv.cls index da3d762..2dc9566 100644 --- a/awesome-cv.cls +++ b/awesome-cv.cls @@ -740,15 +740,32 @@ \newenvironment{cvitems}{% \vspace{-4.0mm} \begin{justify} - \begin{itemize}[leftmargin=2ex, nosep, noitemsep] - \setlength{\parskip}{0pt} - \renewcommand{\labelitemi}{\bullet} -}{% - \end{itemize} + \begin{itemize}[leftmargin=2ex, nosep, noitemsep, label=] + \setlength\itemsep{0pt} + \setlength\parskip{0pt} + \setlength\parsep{0pt} + \renewcommand\labelitemi{\hspace{0.2em}\textbullet\hspace{0.2em}} + }{% + \end{itemize} \end{justify} \vspace{-4.0mm} } +% Define an environment for cvsubitems (Same as the above but without retaking vertical space) +\newenvironment{cvsubitems}{% + \begin{justify} + \begin{itemize}[leftmargin=2ex, nosep, noitemsep, label=] + \setlength\itemsep{0pt} + \setlength\parskip{0pt} + \setlength\parsep{0pt} + \renewcommand\labelitemi{\hspace{0.2em}\textbullet\hspace{0.2em}} + \renewcommand\labelitemii{\hspace{0.2em}\textopenbullet\hspace{0.2em}} + \renewcommand\labelitemiii{\hspace{0.2em}\textasteriskcentered\hspace{0.2em}} + }{% + \end{itemize} + \end{justify} +} + %------------------------------------------------------------------------------- % Commands for elements of Cover Letter diff --git a/examples/coverletter.pdf b/examples/coverletter.pdf index b3e4421..c0a5889 100644 Binary files a/examples/coverletter.pdf and b/examples/coverletter.pdf differ diff --git a/examples/cv.pdf b/examples/cv.pdf index 205233e..7f77186 100644 Binary files a/examples/cv.pdf and b/examples/cv.pdf differ diff --git a/examples/cv/experience.tex b/examples/cv/experience.tex index 48e88bc..14e45e8 100644 --- a/examples/cv/experience.tex +++ b/examples/cv/experience.tex @@ -18,6 +18,9 @@ { \begin{cvitems} % Description(s) of tasks/responsibilities \item {Everything that matters.} + \begin{cvsubitems} + \item Here is some more details on everything + \end{cvsubitems} \item {Designed and provisioned the entire infrastructure on the AWS cloud to meet security compliance and acquire a business license for financial services in Korea.} \item {Continuously improved the infrastructure architecture since launching the service. (currently 3.6 million users)} \item {Established a standardized base for declarative management of infrastructures and service deployments, enabling operational efficiency and consistency. Over 90\% of AWS resources were all managed through standardized terraform modules. All add-ons and service workloads on the Kubernetes cluster were managed on a GitOps basis with Kustomize and ArgoCD.} diff --git a/examples/resume.pdf b/examples/resume.pdf index 918b5f7..58788b3 100644 Binary files a/examples/resume.pdf and b/examples/resume.pdf differ