\entry 有一个额外的 }

\entry 有一个额外的 }
Argument of \entry has an extra }.
<inserted text> 
                \par 
l.145 {DaPulse}
                – Project Management\newline 

我是 Latex 的新手,想在我的简历中添加一份其他资格的简单列表,但我一直收到此错误。

以下是我针对其他资格的代码:

%   OTHER QUALIFICATIONS SECTION
%----------------------------------------------------------------------------------------

\section{other qualifications}

\begin{entrylist}
%------------------------------------------------
\entry
{MS Office:}
MS Word – Editing
MS Excel – Graphs, Formulas, Tables
MS PowerPoint\newline
\entry
{CRM – Exai}\newline
\entry
{DaPulse} – Project Management\newline
\entry
{HTML} comprehension\newline
\entry
{WIX} – Creating and Editing Website Content
{\vspace{-0.3cm}}
%------------------------------------------------
\end{entrylist}

我应该把括号放在哪里才能列出清单?

答案1

你做错了。Acventry需要四个强制参数。它被设计为需要年份、标题和描述。

我认为您要找的只是一张小而简单的表格。保持简单,不要让模板决定您要做什么。

texsxFriggeriEntry

模板定义的列表位于中间,底部是包含您要提供的信息的简单表格。图片顶部显示了模板的总体设计。

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Friggeri Resume/CV
% XeLaTeX Template
% Version 1.2 (3/5/15)
%
% This template has been downloaded from:
% http://www.LaTeXTemplates.com
%
% Original author:
% Adrien Friggeri ([email protected])
% https://github.com/afriggeri/CV
%
% License:
% CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/)
%
% Important notes:
% This template needs to be compiled with XeLaTeX and the bibliography, if used,
% needs to be compiled with biber rather than bibtex.
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%


\documentclass[]{friggeri-cv} % Add 'print' as an option into the square bracket to remove colors from this template for printing
\usepackage{mwepage}

\addbibresource{bibliography.bib} % Specify the bibliography file to include publications

\begin{document}

\header{john}{smith}{junior business analyst} % Your name and current job title/field

%----------------------------------------------------------------------------------------
%   SIDEBAR SECTION
%----------------------------------------------------------------------------------------

\begin{aside} % In the aside, each new line forces a line break
\section{contact}
123 Broadway
City, State 12345
Country
~
+0 (000) 111 1111
+0 (000) 111 1112
~
\href{mailto:[email protected]}{[email protected]}
\href{http://www.smith.com}{http://www.smith.com}
\href{http://facebook.com/johnsmith}{fb://jsmith}
\section{languages}
english mother tongue
spanish \& italian fluency
\section{programming}
{\color{red} } JavaScript
Python, C++, PHP
CSS3 \& HTML5
\end{aside}
\begin{entrylist}

%------------------------------------------------

\entry
{2011--2012}
{Masters {\normalfont of Commerce}}
{The University of California, Berkeley}
{\emph{Money Is The Root Of All Evil -- Or Is It?} \\ This thesis explored the idea that money has been the cause of untold anguish and suffering in the world. I found that it has, in fact, not.}

%------------------------------------------------

\entry
{2007--2008}
{Bachelor {\normalfont of Business Studies}}
{The University of California, Berkeley}
{Specialization in Commerce}

%------------------------------------------------

\end{entrylist}

\begin{entrylist}
%------------------------------------------------
\entry{MS Office:}{MS Word – Editing,
    MS Excel – Graphs, Formulas, Tab,
    MS PowerPoint}{}{}
\entry{CRM – Exai}{}{}{}
\entry{DaPulse}{Project Management}{}{}
\entry{HTML}{comprehension}{}{}
\entry{WIX}{Creating and Editing Website Content}{}{}
%------------------------------------------------
\end{entrylist}
\begin{tabular}{l@{\quad}l}
MS Office  & MS Word – Editing, MS Excel – Graphs, Formulas, Tab, MS PowerPoint\\
CRM-Exai &\\
DaPulse    & Project Management\\
HTML       & comprehension\\
WIX        & Creating and Editing Website Content
\end{tabular}

\end{document}

相关内容