EDITED
I'm trying to get biblatex to work in TeXlipse. My current tex file is:
\documentclass{ut-thesis}
\usepackage[backend=biber]{biblatex}
\addbibresource{thesis.bib}
\degree{Test Degree}
\department{Deparment}
\gradyear{Year}
\author{Author}
\title{UT-Thesis Class File Example}
\setcounter{tocdepth}{2}
\flushbottom
%%%%%%%%%%%% MAIN DOCUMENT %%%%%%%%%%%%
\begin{document}
\begin{preliminary}
\maketitle
\begin{abstract}
\end{abstract}
\tableofcontents
\end{preliminary}
\chapter{Introduction}
\section{Why?}
This is a section \cite{ID}
\addcontentsline{toc}{chapter}{Bibliography}
\printbibliography
\end{document}
With test.bib containing:
@Article{ID,
author = {Author},
title = {Title},
journal = {journal},
year = {2013}
}
@Article{ID2,
author = {Authors},
title = {Title 2},
journal = {Journal 2},
year = {2013}
}
But i keep getting the warning:
LaTeX Warning: Empty bibliography on input line 37.
Please (re)run Biber on the file: document.tex
I am trying to run biber as a manual build program with
Location: C:\Program Files (x86)\MiKTeX 2.9\miktex\bin\biber.exe
Working Directory: ${workspace_loc:/Thesis/tmp}
Arguments: thesis
I get the following console output:
INFO - This is Biber 1.7
INFO - Logfile is 'thesis.blg'
INFO - Reading 'thesis.bcf'
INFO - Found 1 citekeys in bib section 0
INFO - Processing section 0
INFO - Looking for bibtex format file 'thesis.bib' for section 0
INFO - Found BibTeX data source 'C:/Program Files (x86)/MiKTeX 2.9/bibtex/bib/unswcover/thesis.bib'
WARN - I didn't find a database entry for 'ID' (section 0)
INFO - Overriding locale 'English_United States.1252' default tailoring 'variable = shifted' with 'variable = non-ignorable'
INFO - Sorting 'entry' list 'nty' keys
INFO - No sort tailoring available for locale 'English_United States.1252'
INFO - Writing 'thesis.bbl' with encoding 'ascii'
INFO - Output to thesis.bbl
INFO - WARNINGS: 1
This program works in Texmaker when i set it up to run
pdflatex > biber > pdflatex > pdflatex
but I want to get it working in TeXlipse.
biber myfile.bcfis enough for the command line. As for the editor, you probably need to configure it to callbiberinstead ofbibtex..? – jon Aug 06 '13 at 21:44