创建简历模板 - 需要教育方面的帮助

创建简历模板 - 需要教育方面的帮助

我正在为像我这样的人(也就是完全不熟悉 Latex 的人)创建一个简历模板,探索这方面的知识。我一直在努力将我已有的内容模块化,在处理教育部分时,我首先创建了一个两列的表格,表格的内容向左对齐,向右不对齐(以将日期推到最右边)。这是我的教育部分的代码:

\vspace{-4mm}
\begin{table}[htbp]
  \centering
  \begin{tabularx}{\textwidth}{p{0.75\textwidth}>{\raggedleft\arraybackslash}p{0.25\textwidth}}
     \textbf{Ms. in Computer Science}, Northeastern University, MA & Sept. 2021 - May 2023 \\
     \textbf{B.E in Computer Engineering}, Pune University, IN & Aug. 2016 - May 2020
  \end{tabularx}
\end{table}
\vspace{-7mm}

我正在尝试创建一个样式文件 .sty 来存储命令,导入适当的库。请帮我从上面的代码创建三个新命令:

  1. ResumeEducationListStart - 包括
\vspace{-4mm}
\begin{table}[htbp]
  \centering
  \begin{tabularx}{\textwidth}{p{0.75\textwidth}>{\raggedleft\arraybackslash}p{0.25\textwidth}}
  1. ResumeEducationItem - 包括
\textbf{Ms. in Computer Science}, Northeastern University, MA & Sept. 2021 - May 2023 \\

最后 3. ResumeEducationListEnd - 包括

\end{tabularx}
\end{table}
\vspace{-7mm}

出于某种原因,我不能简单地将代码分成三部分:错误提示“表格”开始并结束于 \end{document}

相关内容