使用 overleaf 模板时出现“altacv”文本对齐问题

使用 overleaf 模板时出现“altacv”文本对齐问题

EXPERIENCE 和 ABOUT ME 下的文字没有对齐。

图像的代码EXPERIENCE是:

\cvsection{Experience}
\cvevent{Technical Manager}{Labkafe}{August 2018 -- January 2021}{Kolkata, India}
\begin{itemize}
\item Designed and developed scientific laboratory equipment
\item Led the quality testing team, built product packages and user manuals
\item Analised sales data and customer feedback on excel
\item Benchmarked installation time, generated leads, and increased sales by 35\% 
\item Trained professionals in scientific laboratory
\item Provided technical support to customers
\item Created tutorial series on YouTube
\item Installed Equipment and executed experiments on-site
\item Managed logistics and tracked product delivery information
\end{itemize}

代码如下ABOUT ME

\cvsection[\marginpar{p1sidebar}]{About Me}
\begin{itemize}
I am a data enthusiast with hands-on experience in entry-level data analysis. I am proficient in Python (NumPy, Pandas, Matplotlib, Seaborn), Tableau, SQL (MySQL), MS Excel, Google spreadsheet. Targeting Data Analyst position in Spain with a strong desire to learn problem-solving skills. I have overall 8+ years of experience in teaching, software development, sales data analysis, and customer support.
\end{itemize}

如何对齐这些线?

答案1

我使用\usepackage{ragged2e}包和\justifying命令。并且成功了。

\cvsection{About Me}

\justifying % Use package `\usepackage{ragged2e}` in the preamble
\begin{itemize}[leftmargin=2pt, rightmargin=1pt]
I am a data enthusiast with hands-on experience in entry-level data analysis. I am proficient in Python (NumPy, Pandas, Matplotlib, Seaborn), Tableau, SQL (MySQL), MS Excel, Google spreadsheet. Targeting Data Analyst position in Spain with strong desire to learn problem-solving skills. I have overall 8+ years of experience in teaching, software development, sales data analysis and customer support
\end{itemize} 

相关内容