Replies: 8 comments
-
Please upload working example to check your problem :) |
Beta Was this translation helpful? Give feedback.
-
@posquit0 I made an example for you to see. The steps I took were
https://docs.google.com/document/d/1Q6Cogxyf4vbhrMkrbxl8cZCdy2QA30BJGMI34k-o9bY/edit?usp=sharing |
Beta Was this translation helpful? Give feedback.
-
I tried reproducing this issue but couldn't. I'm using Chrome to open the pdf file. I lose all of the formattings when I copy and paste but the spaces between words in the description section are there. |
Beta Was this translation helpful? Give feedback.
-
fwiw this happens within bullet points only (I think) and happens when uploading the pdf to Indeed.com, and likely on all Applicant Tracking Systems (ATS). For instance, you can see the concatenated strings when uploading the example pdf on https://www.jobscan.co. |
Beta Was this translation helpful? Give feedback.
-
Any solution for this issue? |
Beta Was this translation helpful? Give feedback.
-
This worked for me, from a similar issue: |
Beta Was this translation helpful? Give feedback.
-
Hi all, I found a solution that worked for me, got it from ChatGPT with the following Prompt: Edited Response (Had to change "cvlist" from the original response to "cvitems"): Here's how you can achieve this:
\newenvironment{cvitems}{
\begin{itemize}[leftmargin=2ex, nosep, noitemsep]
\vspace{-2mm}
}{
\end{itemize}
}
\newenvironment{cvitems}{
\begin{itemize}[leftmargin=2ex, nosep, noitemsep, label=]
\setlength\itemsep{0pt}
\setlength\parskip{0pt}
\setlength\parsep{0pt}
\renewcommand\labelitemi{\hspace{0.5em}\textbullet\hspace{0.5em}}
}{
\end{itemize}
} In this modification, we set the
\documentclass[11pt, a4paper]{awesome-cv}
\begin{document}
% Your CV content here, use the cvitems environment as usual
\section{Education}
\begin{cvitems}
\item First item in the list.
\item Second item in the list.
\item Third item in the list.
\end{cvitems}
\end{document} With these modifications, the |
Beta Was this translation helpful? Give feedback.
-
Hello @chelseanbr. That worked perfectly! An existing issue is with commas (,) the source code is yet to cover it. Have any ideas around resolving this? |
Beta Was this translation helpful? Give feedback.
-
Hi there,
I find that if I write some items in the description part of cventry, it will automatically remove the space between words and do a spacing itself, it looks good in printing, but if we want to parse this pdf file, the spacing is gone, every word is connected without space.
I'm wondering if you could tell me how to turn off this auto spacing function.
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions