私は履歴書にサンプルコードを使用しています。このコードは非常にシンプルで、実際には「\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}