Skip to content

Fix issue where copying bullets from the resulting pdf results in text with no whitespace and add cvsubitems #525

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 22 additions & 5 deletions awesome-cv.cls
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Binary file modified examples/coverletter.pdf
Binary file not shown.
Binary file modified examples/cv.pdf
Binary file not shown.
3 changes: 3 additions & 0 deletions examples/cv/experience.tex
Original file line number Diff line number Diff line change
Expand Up @@ -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.}
Expand Down
Binary file modified examples/resume.pdf
Binary file not shown.