我该如何修正我的简历格式?

我该如何修正我的简历格式?

我目前正在使用以下模板撰写简历https://www.overleaf.com/latex/templates/data-science-tech-resume-template/zcdmpfxrzjhv,但在向技能部分添加更多标签后,重新格式化文档时遇到了问题。我尝试增加列表中的项目\列\行的数量,但没有成功。

我收到的错误消息是:\endtemplate

l.5 \skills{Frameworks} & & Numpy、Sci-Kit learn、Tidyverse、ggplot、Pandas……您给出的 \span 或 & 标记比正在进行的 \halign 或 \valign 序言中的标记多。因此,我假设您打算输入 \cr。

\结束模板

l.6 \skills{软技能} & & 好奇心强、时间管理能力强、善于沟通……您给出的 \span 或 & 标记比正在进行的 \halign 或 \valign 序言中的标记要多。因此,我假设您打算输入 \cr。

正在使用的代码如下:

    \begin{tabular}{p{11em} p{1em} p{43em}} %p{43em} p{43em}}
\skills{Tools and Programming Languages} & &    Python, Git, Java, SQL R, HTML, Scheme, JavaScript, \LaTeX, MarkDown, PHP, Bash, Batch, Powershell, Visual Studio, Pycharm, Eclipse \\
\skills{Quantitative Research} & &  Mathematical optimization, Mathematical Modeling, Probabilistic and Statistical visualisation R, MySQL, Microsoft Excel, Access, Power BI \\
\skills{Databases} & &  Microsoft Access, MySQL, PHP MyAdmin, Microsoft SQL server
\skills{Frameworks} & & Numpy, Sci-Kit learn, Tidyverse, ggplot, Pandas, Dask
\skills{Soft Skills} & & Curiosity, strong time management, good communication and negotiation skills, superb problem solving and creativity, continually improving teamwork, excellent analytical skills, adaptable, strong attention to detail, strong work ethic, accepting criticism
\end{tabular}


    \documentclass[letter,10pt]{article}
\usepackage[utf8]{inputenc}

%====================
% OFFICIAL PUBLIC OVERLEAF TEMPLATE
% https://www.overleaf.com/latex/templates/data-science-tech-resume-template/zcdmpfxrzjhv
% 
%====================
%
% Resume template for data scientists, a complement to data-science-tech-cover-letter-template:
% https://www.overleaf.com/latex/templates/data-science-tech-cover-letter-template/gbrcqktbsfxf
%
% Files:        resume.tex: Main file
%               _header.tex: header code
%               TLCresume.sty: style file containing formatting details
%               section/objective: https://www.indeed.com/career-advice/resumes-cover-letters/resume-objective-examples
%               section/skills: table of skills
%               section/experience: projects or roles
%               section/education: schools and stuff
%               section/activities: optional, could comment out in resume.tex.
%
% Editor:       https://github.com/TimmyChan 
%               https://www.linkedin.com/in/timmy-l-chan/
%               
% Last Updated: March 24th, 2022
%
%====================


\usepackage{TLCresume}

%====================
% CONTACT INFORMATION
%====================
\def\name{} % Name Here
\def\phone{() }
\def\city{, }
\def\email{}
\def\LinkedIn{} % linkedin.com/in/______
\def\github{} % github username
\def\gitlab{} % gitlab username
\def\role{} % JOB TITLE

\input{_header}
\begin{document}
\input{sections/objective}

\section{Skills}
\input{sections/skills}

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

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



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

\section{Personal projects}
\imput{sections\Personal Projects}

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


\end{document}

l.65 \imput
       {sections\Personal Projects}

错误消息顶行末尾的控制序列从未被 \def 过。如果您拼错了它(例如,\hobx'), typeI')和正确的拼写(例如,`I\hbox')。否则继续,我会忘记未定义的任何东西。

! 未定义的控制序列。l.65 \imput{sections\Personal Projects} 错误消息顶行末尾的控制序列从未被 \def'ed。如果您拼错了它(例如,\hobx'), typeI')和正确的拼写(例如,`I\hbox')。否则继续,我会忘记未定义的内容。

输出如下所示: 在此处输入图片描述

相关内容