我想在简历的技能部分制作一个项目符号列表。我使用的是 Awesome-CV 模板https://github.com/posquit0/Awesome-CV。目前,我的 skills.tex 文件如下所示:
\begin{cvskills}
\cvskill
{Technical skills} % Category
{MS Office, Python, R, SQL, MATLAB, Mathematica, LaTeX, Git, PyQt} % Skills
\end{cvskills}
但是,我想添加一些代码(itemize等)使其看起来像这样:
因此,基本上通过在 \cvskill“技术技能”下创建一个项目符号列表来为我当前的代码添加一层。这需要我现在要求的一些新代码。
我已经尝试过 itemize 和一些其他方法,但它们看起来都很糟糕或无法编译。
希望论坛中有人愿意提供建议并提供帮助。
答案1
这是另一种变体,它使条目保持为 下其他条目的格式cvskils
。
\begin{cvskills}
\cvskill
{Technical skills}
{\begin{minipage}[t]{0.7\textwidth}
MS Office, Python, R, SQL, MATLAB, Mathematica, LaTeX, Git, PyQt
\begin{itemize}
\item Conducted data cleaning an manipulation and multiple regresion in my BSc thesis using R.
\item Conducted a study pn Delta hedging an Delta-Vega hedging stock index option with R.
\end{itemize}
\end{minipage}
}
%Other entries ....
\end{cvskills}
要抑制项目的左缩进,请在文档序言中添加
\usepackage{enumitem}
\setlist[itemize]{leftmargin=*}
答案2
除了使用cvskills
环境之外,您还可以使用环境cventries
,然后使用cvitems
而不是itemize
来创建列表,并将位置和日期参数保持为空,如下所示:
\begin{cventries}
\cventry
{MS Office, Python, R, SQL, MATLAB, Mathematica, LaTeX, Git, PyQt} % Skills
{Technical skills} % Category
{} % Location
{} % Date
{
\begin{cvitems}
\item {Conducted data cleaning and -manipulation and multiple regression in my BSc thesis using R}
\item {Conducted a study on Delta hedging and Delta-Vega hedging stock index options using R}
\end{cvitems}
}
\end{cventries}
输出: