事件列表中的列表 - 出现错误,可能缺少 \item

事件列表中的列表 - 出现错误,可能缺少 \item

撰写简历但其格式不符合要求并出现错误。

MWE(链接至tccv https://www.sharelatex.com/templates/cv-or-resume/two-column-cv):

在此处输入图片描述

\documentclass{tccv}
\usepackage[english]{babel}

\begin{document}

\part{Sam Harper}

\section{Professional experience}

\begin{eventlist}

\item{September 2017 -- Present}
 {UoB Quants, Persici Ltd}
 {Quantitative Analyst}

\begin{itemize}

\item Completed the build and maintenance of current portfolio optimiser.\\
\item Time series analysis and econometric and statistical arbitrage oppertunities.\\
\item Calculating risk and exposure for 5 equity portfolios.\\

\end{itemize}

\end{eventlist

\end{document}

答案1

您的代码的问题是itemize该类中不允许第二个嵌套环境。

但这里有一个简单的解决方法(我添加\textbullet和删除了错误的itemize):

\documentclass{tccv}
\usepackage[english]{babel}

\begin{document}

\part{Sam Harper}

\section{Professional experience}

\begin{eventlist}
\item{September 2017 -- Present}
 {UoB Quants, Persici Ltd}
 {Quantitative Analyst}

  \textbullet~Completed the build and maintenance of current portfolio optimiser. % <==================================
  \textbullet~Time series analysis and econometric and statistical arbitrage oppertunities. 
  \textbullet~Calculating risk and exposure for 5 equity portfolios. 

\item{October 1998 -- November 2001}
     {TWINS s.r.l., Sarezzo}
     {PC and PLC Siemens development}

Programming, installation and trial of transfer machines for assembly,
adjustment and testing of gas taps. Development and installation of PC
based semiautomatic test stands for pneumatic and hydraulic leakage
tests on valves, gas regulators, electrovalves, tanks and others.
\end{eventlist}

\end{document}

其结果为:

生成的 pdf

相关内容