I recently switched from a windows box to linux mint + cinnamon. The files I normally run on windows will not print the references. I'm using texstudio with tex live. Here's a MWE:
\documentclass[leavefloats]{apa6e}
\usepackage[american]{babel}
\usepackage[style=apa,backend=biber,bibencoding=latin1]{biblatex}
\addbibresource{testb.bib}
\DeclareLanguageMapping{american}{american-apa}
\usepackage{hyperref}
\defbibheading{bibliography}{%
\section{\normalfont\refname}}
\title{title}
\shorttitle{ti}
\author{me}
\authornote{note}
\abstract{abs}
\date{\today}
\begin{document}
\maketitle
MWE
\parencite{Mcvee2005}
\printbibliography
\end{document}
The bib file is:
@ARTICLE{Mcvee2005,
author = {Mcvee, Mary B. and Dunsmore, Kailonnie and Gavelek, James R.},
title = {{Schema theory revisited}},
journal = {Review of Educational Research},
year = {2005},
volume = {75},
pages = {531-566}
}
Here's a link to the log file: http://dl.dropbox.com/u/61803503/test.log
How can I get the references to print using the new linux environment with tex live.
Note:
Running the following from the command line:
pdftex test.tex
bibtex test.aux
results in:
.
tyler@trinker ~/Desktop/MWE $ bibtex test.aux
This is BibTeX, Version 0.99d (TeX Live 2012/Debian)
The top-level auxiliary file: test.aux
I found no \citation commands---while reading file test.aux
I found no \bibdata command---while reading file test.aux
I found no \bibstyle command---while reading file test.aux


backend=biber, so you need to runbiberand notbibtex– egreg Dec 23 '12 at 15:49