I wrote my CV using the Friggeri resume template, but I just noticed a problem: the document it's rendered very differently between Acrobat Reader and FoxIt PDF Reader and Document Viewer:


I used xelatex and the icons are symbols from FontAwesome, following this tutorial: https://coderwall.com/p/r67dyq where I defined a new fontawesome.sty. Also I changed the in the friggeri-cv.cls the colorcounter function to get only the first letter coloured:
\newcounter{colorCounter}
\def\@sectioncolor#1{%
{%
\color{%
\ifcase\value{colorCounter}%
blue\or%
red\or%
orange\or%
green\or%
purple\or%
brown\else%
headercolor\fi%
} #1%
}%
\stepcounter{colorCounter}%
}
I call the icons on the sections as: \section{{\FA \faStar} Expertise}
Here is my code of the resume, reduced at the essential:
\documentclass[]{friggeri-cv}
% \documentclass{article}
\usepackage{unicode-math}
\usepackage{fontawesome}
\definecolor{light-gray}{gray}{0.55}
\definecolor{skype}{HTML}{12A5F4}
\definecolor{html5}{HTML}{e34c26}
\definecolor{php}{HTML}{6c7eb7}
\definecolor{db}{HTML}{FF9900}
\definecolor{linkedin}{HTML}{1683BB}
\setmathfont{STIXGeneral}
% \addbibresource{bibliography.bib} % Specify the bibliography file to include publications
\begin{document}
\newfontfamily{\FA}{FontAwesome}
\header{Kiker}{Surname}{Front End Web Developer} % Your name and current job title/field
%----------------------------------------------------------------------------------------
% SIDEBAR SECTION
%----------------------------------------------------------------------------------------
\begin{aside} % In the aside, each new line forces a line break
\section{contact}
{\color{light-gray}{\FA \faHome}}
{\color{skype}{\FA \faSkype}} \href{skype:myskype.myskype?call}{myskype.myskype}
{\color{light-gray}{\FA \faEnvelope}} \href{mailto:myemail@gmail.com}{myemail@gmail.com}
~
{\color{html5}{\FA \faFire}} \href{http://www.mywebsite.de}{Portfolio}
{\color{gray}{\FA \faPencil}} \href{http://www.myblog.net}{My Blog}
{\color{linkedin}{\FA \faLinkedin}} \href{http://au.linkedin.com/pub/}{LinkedIn}
{\color{gray}{\FA \faGithubSign}} \href{https://github.com/}{GitHub}
\section{programming}
\small{{\color{red} \FA \faHeart} JavaScript, jQuery,
{\color{html5}\FA \faHtml5} HTML5, CSS3,
{\color{php}\FA \faCode} PHP, Groovy/Grails,
{\color{gray}\FA \faLinux} Linux, LEMP, NGINX,
{\color{db}\FA \faTh} MySQL, Amazon AWS}
\section{languages}
\emph{proficient} English
\emph{mother tongue} Italian
\emph{notions} Spanish \& French
\end{aside}
\section{{\FA \faUser} About me}
\section{{\FA \faStar} Expertise}
\textbf{Professional Capabilities}
\begin{itemize}
\item{High-quality front-end development for web sites and applications}
\item{Modular, DRY, robust and reusable code}
\item{Performance optimization, progressive enhancement, usability}
\item{SEO with semantic HTML, Micro Formats and schema.org structures}
\item{Site planning}
\item{User interface design}
\end{itemize}
\textbf{Technical Skills}
\begin{itemize}
\item{Scalable HTML and CSS}
\item{JavaScript Development (includes advanced jQuery and plugins development, HTML5 API, vanilla JavaScript)}
\item{Responsive Web Design}
\item{Mobile development (in browser)}
\item{Experience with Linux environments.}
\item{Working knowledge of PHP, using: CodeIgniter, ExpressionEngine, WordPress}
\item{Experience with Groovy/Grails}
\item{Working experience with software versioning, in particular Git and Mercurial}
\item{CSS Preprocessor (SASS, SCSS and LESS)}
\end{itemize}
\clearpage
\section{{\FA \faSuitCase} Experience}
\section{{\FA \faBook} Education}
\begin{entrylist}
\entry
{2004--2010}
{Degree in {\normalfont Computer Science and Automation Engineering}}
{Polytechnic Marche University, Italy}
{ }
\end{entrylist}
\section{{\FA \faQuote} Recommandations}
\end{document}
** This is how the fontawesome.sty looks like:** I have the fontawesome font installed on my system
\def\faUserMd{\symbol{"F200}}
\def\faLinux{\symbol{"F17C}}
\def\faHtml5{\symbol{"F13B}}
\def\faCode{\symbol{"F121}}
\def\faQuote{\symbol{"F10D}}
\def\faSuitCase{\symbol{"F0F2}}




CV.pdfit all looks good (but only the heart symbol is used). We definitely need more information on this one: a minimal working example (MWE) and at least a link to the symbols/font would been helpful. – Qrrbrbirlbel Jul 01 '13 at 02:17\documentclassand ending with\end{document}) that demonstrates the issue. – Daniel Jul 01 '13 at 10:21\header{Kiker}and\end{document}and leaving just\section{{\FA \faStar} Expertise}? – bersanri Jul 01 '13 at 13:25