我有以下几行来在我的简历中生成简历项目。
\resumeItemListStart
\resumeItem {Calculated} {retention and attrition rates among students participating in Row New York’s athletic and academic programs in Manhattan, Brooklyn, and Queens.}
\resumeItem {Reviewed} {and cleaned existing records in the organizations SalesForce database using a data de-duplication software}
\resumeItem{Created}{easy to understand reports and visualizations for monthly operations meetings using the R statistical software}
\resumeItem {Compiled}{a comprehensive data handbook with information on how to access the organization's data, and the underlying formula’s for calculating various metrics}
\resumeItemListEnd
输出结果如下
我的问题是 1. 如何删除第一个单词后的冒号“:”标点符号但仍保持第一个单词粗体?
答案1
为什么不直接使用环境呢itemize
?它工作得很好——只需在序言中添加以下行:
\def\labelitemi{$\circ$}
然后你只需要像下面这样写
\begin{itemize}
\item \textbf{ABC} blah blah
\item \textbf{DEF} blah blah
\end{itemize}
希望对你有帮助。
答案2
在您的文件中找到以下代码:
\newcommand{\resumeItem}[2]{
\item\small{
\textbf{#1}{: #2 \vspace{-2pt}}
}
}
并删除: