Code: Select all
\documentclass{friggeri-cv} % Add 'print' as an option into the square bracket to remove colors from this template for printing
\usepackage{comment}
\usepackage{helvet}
%\pdfmapfile{=psnfss.map}
\addbibresource{bibliography.bib} % Specify the bibliography file to include publications
\begin{document}
\header{foo}{foo}{foo} % Your name and current job title/field
\section{publications}
\printbibsection{article}{article in peer-reviewed journal} % Print all articles from the bibliography
\printbibsection{book}{books} % Print all books from the bibliography
\begin{refsection} % This is a custom heading for those references marked as "inproceedings" but not containing "keyword=france"
\nocite{*}
\printbibliography[sorting=chronological, type=inproceedings, title={international peer-reviewed conferences/proceedings}, notkeyword={france}, heading=subbibliography]
\end{refsection}
\begin{refsection} % This is a custom heading for those references marked as "inproceedings" and containing "keyword=france"
\nocite{*}
\printbibliography[sorting=chronological, type=inproceedings, title={local peer-reviewed conferences/proceedings}, keyword={france}, heading=subbibliography]
\end{refsection}
\printbibsection{misc}{other publications} % Print all miscellaneous entries from the bibliography
\printbibsection{report}{research reports} % Print all research reports from the bibliography
\end{document}
The file "bibliography.bib" is a standard bib file and I doubt it to be the culprit. The used class file is attached.
Thanks!