2017-10-22 10 views
0

私はLaTeXの上の私の履歴書のために以下のテンプレートに頼っています:挿入連絡先アイコン+テキスト

https://olivierpieters.be/blog/2017/10/02/designing-a-cv-in-latex-part-2

私は今、次のように私が開始され、連絡先のセクションでブロックされて少し午前:

\begin{tikzpicture}[every node/.style={inner sep=0pt,outer sep=0pt}] 
\matrix[ 
column1/.style={anchor=center,contactIcon}, 
column2/.style={anchor=west, align=left,contactText}, 
column sep=5pt](Contact){ 
\node{\faMapMarker}; 
&\node{xxx};}; 
\end{tikzpicture} 

最後の目標は、アイコンを左側に、テキストを右側に置くことです。しかしそれは、コードの最後の部分に対応する次のエラーメッセージを示す、私のために動作しません:

"!Missing } inserted. <inserted text>}\end{tikzpicture}" 
"!Missing \cr inserted. <inserted text>\cr\end{tikzpicture}" 
"!Misplaced \cr.<inserted text>\cr\end{tikzpicture} 

答えて

0

あなたのコードの最後の行に2番目の終わりに2つのバックスラッシュが欠落することができることが表示されます。 &\node{xxx};\ \ };

関連する問題