調試:如何修復此“缺少分隔符號”錯誤

調試:如何修復此“缺少分隔符號”錯誤

我正在為我的簡歷使用範例程式碼。這裡的程式碼非常簡單,我實際上沒有使用任何“\left”,但仍然得到這個錯誤「缺少\右“,以及錯誤“缺少分隔符號”“缺$”

我對這些錯誤感到困惑,因為範例本身沒有提供任何範例來修復它們。有人可以幫我處理這些錯誤嗎?

這是這些錯誤的位置:

    % 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}

相關內容