BibTeX, biblatex and biberBibliography created by Biber remains empty

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
lucqui
Posts: 1
Joined: Fri Nov 08, 2013 3:17 am

Bibliography created by Biber remains empty

Post by lucqui »

I'm writing a resume that includes a publication list. I use a template I borrowed and I modified some minor things. The template requires Biber and XeLaTeX. I didn't have Biber on my machine (Fedora 19) so I downloaded and installed TeX Live 2013 (which includes it).

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 problem is that if I run Biber on my file (foo.tex, etc): Biber foo and the file foo.bbl comes out blank. Upon running Biber I don't get anything particularly interesting in the terminal, so this is completely confusing me. Any help would be particularly wonderful.

The file "bibliography.bib" is a standard bib file and I doubt it to be the culprit. The used class file is attached.

Thanks!
Attachments
friggeri-cv.cls
(6.57 KiB) Downloaded 381 times
Last edited by localghost on Fri Nov 08, 2013 10:42 am, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Post Reply