添加新项目符号(使用 Awesome-CV 模板)

添加新项目符号(使用 Awesome-CV 模板)

我正在使用 Awesome-CV 模板(https://github.com/posquit0/Awesome-CV),并尝试在每个项目的“荣誉和奖项”部分下添加一个新的要点。

enter image description here

因此,要点应位于“2014 年入围者”要点下方,作为示例。我显然是 Latex 的初学者,所以我不知道在哪里添加它或如何格式化它。提前致谢。

本节的代码为:

\cvsection{Honors \& Awards}
    \cvsubsection{International}
    \begin{cvhonors}
      \cvhonor
        {Finalist}
        {DEFCON 22nd CTF Hacking Competition World Final}
        {Las Vegas, U.S.A}
        {2014}
      \cvhonor
        {Finalist}
        {DEFCON 21st CTF Hacking Competition World Final}
        {Las Vegas, U.S.A}
        {2013}
      \cvhonor
        {Finalist}
        {DEFCON 19th CTF Hacking Competition World Final}
        {Las Vegas, U.S.A}
        {2011}
      \cvhonor
        {6th Place}
        {SECUINSIDE Hacking Competition World Final}
        {Seoul, S.Korea}
        {2012}
    \end{cvhonors}

我希望它与下图中的要点类似: enter image description here

答案1

我并没有真正阅读模板的文档awesome-cv,但我发现在cvhonors环境中不能使用itemize环境。

这(对我而言)意味着cvhonors环境已经是一个固定的环境enumerate,或者itemize你不能真正itemize在其中使用“嵌套”的环境。

我的解决方法是破坏环境(参见我添加的\end{cvhonors}和),并在它们与您的环境\begin{cvhonors}之间添加一个小页面。itemize

使用小页面是因为我们必须减少仍然遵守模板特殊距离的项目符号的距离。

我的 MWE 在这里:

%!TEX TS-program = xelatex
%!TEX encoding = UTF-8 Unicode
\documentclass[11pt, a4paper]{awesome-cv}
\begin{document}
\cvsection{Honors \& Awards}
    \cvsubsection{International}
    \begin{cvhonors}
      \cvhonor
        {Finalist}
        {DEFCON 22nd CTF Hacking Competition World Final}
        {Las Vegas, U.S.A}
        {2014}
        \end{cvhonors}\vspace{-5pt}

            \begin{minipage}{\linewidth}
            \begin{itemize}
            \item test 1
            \item test 2
            \end{itemize}
            \end{minipage}\vspace{-5pt}

            \begin{cvhonors}
      \cvhonor
        {Finalist}
        {DEFCON 21st CTF Hacking Competition World Final}
        {Las Vegas, U.S.A}
        {2013}
      \cvhonor
        {Finalist}
        {DEFCON 19th CTF Hacking Competition World Final}
        {Las Vegas, U.S.A}
        {2011}
      \cvhonor
        {6th Place}
        {SECUINSIDE Hacking Competition World Final}
        {Seoul, S.Korea}
        {2012}
    \end{cvhonors}

\end{document}

PS:这可以说是一个 MWE,但它需要你链接中的许多字体

输出:

enter image description here

相关内容