Monday, 19 August 2013

Texclipse biber run parameters

Texclipse biber run parameters

I'm trying to run biblatex in texclipse however I keep getting the error
and my citation is just [ID ] with no bibliography at the end of the
document.
LaTeX Warning: Empty bibliography on input line 37.
Please (re)run Biber on the file: document.tex
My main tex file looks like:
\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}
My bib file looks like:
@Article{ID,
author = {Author},
title = {Title},
journal = {journal},
year = {2013}
}
@Article{ID2,
author = {Authors},
title = {Title 2},
journal = {Journal 2},
year = {2013}
}
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.

No comments:

Post a Comment