I recommend to use arara, a very flexible tool to compile LaTeX documents, including, but not limited to, biblatex with biber -- and also deleting the aux files generated in the process.
I adapted from here:
% arara: pdflatex: { shell: yes }
% arara: biber
% arara: pdflatex: { shell: yes }
% arara: clean: { files: [ test.aux, test.log] }
\begin{filecontents}{\jobname.bib}
@book{Labov1972,
Address = {Philadelphia},
Author = {William Labov},
Publisher = {University of Pennsylvania Press},
Title = {Sociolinguistic Patterns},
Year = {1972}}
@book{Chomsky1957,
Address = {The Hague},
Author = {Noam Chomsky},
Publisher = {Mouton},
Title = {Syntactic Structures},
Year = {1957}}
\end{filecontents}
\documentclass[a4paper,11pt]{article}
\usepackage[style=numeric,backend=biber]{biblatex}
\addbibresource{\jobname.bib}
\begin{document}
As first example citation here is \cite{Chomsky1957}.
Here is another example citation \cite{Labov1972}
\printbibliography
\end{document}
Set Gummi to compile with latexmk (from Edit -> Preferences -> Compilation).
Updated: 2017, Jun 11 -- just to clarify my tip
You have two options here (a dirty hack just to use Gummi with arara):
(1) With Windows/Linux, write a simple script that calls arara and name it latexmk. Put it in your path just before the latexmk path (usually before texlive or miktex path).
(2) With Linux, you can include
`alias latexmk='arara'`
within the ~/.bash_aliases file (create one if it does not exist), or inside the .bashrc or .profile files. I used the .bash_aliases way.
I hope that the developers of Gummi will add an arara option at compilation option from Preferences menu in a future release. Until there we will need to use some kind of dirty hack like this.
Save it as test.tex and load it with gummi.
RubberorLatexmkallow you to compile a file with biblatex in Gummi, but in other case Gummi is able to work only with BibTeX. The easier solution using Gummi andPdfTeXcompilation is work with BiBTeX to include\cite{}commands and only then switch to biblatex to finish the work ... without Gummi. A simpler solution could be use a more configurable editor, so you can use biblatex, arara or any other compiler (TeXworks, for example). – Fran Oct 16 '14 at 16:21latexmk-based compilation. It explicitly supports Biber, and as Gummi doesn't have any config options in this area and has not been updated for 2 years, it's likely your best bet. – Joseph Wright Oct 18 '14 at 16:52latexmkshould solve the issue. – Joseph Wright Oct 18 '14 at 21:27