调试:如何修复此“缺少分隔符”错误

调试:如何修复此“缺少分隔符”错误

我正在为我的简历使用示例代码。这里的代码非常简单,我实际上没有使用任何“\left”,但仍然收到此错误“缺失 \right“,以及错误“缺少分隔符”“缺少 $”

我对这些错误感到困惑,因为示例本身没有提供任何修复错误的示例。有人能帮我处理这些错误吗?

这些错误的位置如下:

    % Sprach
    \cvitem{
    \cvheadingstyle{Sprachen}
}{
    \begin{left}
    \begin{tabular}[t]{p{4cm} p{4cm}} 
     Chinesisch & Muttersprache \\ 
     Deutsch & sehr gut \\
     Englisch & sehr gut \\
     Japanisch & grundlegend
    \end{tabular}
    \end{left}
}

尽管有错误,代码还是成功编译并生成了下面的图像,这确实是我想要的。

结果

以下是上面使用的新命令的定义:

% creates a standard, multi-purpose CV item with the given left and right column contents, parskip set to cvparskip
% in the right column, and with appropriate vertical space after
% @param #1 left column content
% @param #2 right column content
\newcommand{\cvitem}[2]{
    % left and right column
    \begin{minipage}[t]{\cvleftcolumnwidth}
        \raggedleft #1
    \end{minipage}% XXX necessary comment to avoid unwanted space
    \hspace{\cvcolumngapwidth}% XXX necessary comment to avoid unwanted space
    \begin{minipage}[t]{\cvrightcolumnwidth}
        \setlength{\parskip}{\cvparskip} #2
    \end{minipage}

    % space after
    \vspace{\cvafteritemskipamount}
}

关于命令“cvheadline”(我认为它不相关)

% styles
\newcommand{\cvnamestyle}[1]{{\Large\cvnamefont\textcolor{cvnamecolor}{#1}}}
\newcommand{\cvsectionstyle}[1]{{\normalsize\cvsectionfont\textcolor{cvsectioncolor}{#1}}}
\newcommand{\cvtitlestyle}[1]{{\large\cvtitlefont\textcolor{cvtitlecolor}{#1}}}
\newcommand{\cvdurationstyle}[1]{{\small\cvdurationfont\textcolor{cvdurationcolor}{#1}}}
\newcommand{\cvheadingstyle}[1]{{\normalsize\cvheadingfont\textcolor{cvheadingcolor}{#1}}}

谢谢大家!在这个活跃的社区里我感觉很受欢迎!

答案1

\begin{left}执行\left

我猜你打算\begin{flushleft}

相关内容