如何使用Europass CV软件包在LaTeX中缩进项目符号点

如何使用Europass CV软件包在LaTeX中缩进项目符号点,latex,Latex,我正在使用乳胶中的europasscv包创建标准化简历。下面附上一些示例代码,寻找如何缩进第二个bulletpoint的解决方案(如果这是一个琐碎的问题,很抱歉,我是LaTeX新手) 您是否考虑过嵌套ecvitemize 这: 导致 请做一个简单的回答 \ecvblueitem{Section}{ \begin{ecvitemize} \item This is the 1st bulletpoint \item This is the 2nd bulletpoint t

我正在使用乳胶中的
europasscv
包创建标准化简历。下面附上一些示例代码,寻找如何缩进第二个bulletpoint的解决方案(如果这是一个琐碎的问题,很抱歉,我是LaTeX新手)


您是否考虑过嵌套
ecvitemize

这:

导致

请做一个简单的回答
  \ecvblueitem{Section}{
  \begin{ecvitemize}
    \item This is the 1st bulletpoint
    \item This is the 2nd bulletpoint that I would like to be indented to the right of the 1st one
    \item This is the 3rd bulletpoint
  \end{ecvitemize}
  }

  \ecvblueitem{Section}{
  \begin{ecvitemize}
    \item This is the 1st bulletpoint
    \begin{ecvitemize}
        \item This is the 2nd bulletpoint that I would like to be indented to the right of the 1st one
    \end{ecvitemize}
    \item This is the 3rd bulletpoint
  \end{ecvitemize}
  }