如何让CV的格式保持一致?

如何让CV的格式保持一致?

我的简历格式一直都很好,直到昨天我打开文件时才发现我的技能部分和部分教育部分没有正确对齐。而且用破折号代替了项目符号。我尝试过几次修复这些错误,但都没有成功。

你能帮我解决这个问题吗?

我的简历截图如下。

下面是我的简历的 .sty 文件的一个最小示例。

\titleformat{\section}{\color{highlight} \scshape \raggedright \large}{}{0em}{}[\vspace{-0.75em}\hrulefill]
% SUBSECTION FORMATTING
\titlespacing*{\subsection}{0em}{0em}{0em}
\titleformat{\subsection}{\bfseries}{}{0em}{}[]

% BOLD COMMAND
\newcommand{\skills}[1]{ {\bfseries #1}}

% SUBTEXT
\newcommand{\subtext}[1]{\textit{#1}\par\vspace{-.75em}}

% tighter spacing than itemize
\setlist[itemize]{align=parleft,left=0pt..1em}
\newenvironment{zitemize}{
\begin{itemize} \itemsep 0pt \parskip 0pt \parsep 1pt}
{\end{itemize}\vspace{-.5em}}

% NO PAGE NUMBER
\pagenumbering{gobble}

% SUBFILES IMPORTING
\RequirePackage{standalone}

% FOR TEMPLATE FILLER
\RequirePackage[english]{babel}
%\RequirePackage{blindtext}% Filler Text

下面是我的 resume.tex 文件的一个最小示例。

\def\gitlab{RasaiStewart} % gitlab username
\def\role{Graduate of Computer Science (AI)} % JOB TITLE

\input{_header}
\begin{document}

\section{Personal Statement}
\input{sections/Personal Statement}

\section{Relevant Experience}
\input{sections/experience}

\section{Education}
\input{sections/education}

\section{Skills}
\input{sections/skills}
%section{Volunteer Work}
%\input{sections/Volunteer Work}

%\section{Languages}
%\input{sections/languages.tex}

% make a newpage wherever it is a clean break
% \newpage
%\section{Coursework projects}
%\input{sections/Coursework projects}

\section{Personal projects}
\input{sections/Personal Projects}% corrected spelling of input DJC

%\section{Interests}
%\input{sections/Certifications.tex}

\section{Awards}
\input{sections/Awards.tex}

\section{Courses}
\input{sections/Courses.tex}

%\section{Activities}
%\input{sections/activities}

%\section{Interests}
%\input{sections/Interests}

%\section{references}
%\input{sections/references}

\end{document}

输出如下所示。

在此处输入图片描述

在此处输入图片描述

相关内容