디버그: "구분 기호 누락" 오류를 수정하는 방법

디버그: "구분 기호 누락" 오류를 수정하는 방법

내 이력서에 예제 코드를 사용하고 있습니다. 여기 코드는 정말 간단합니다. 실제로는 "\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}

관련 정보