BibTeX, biblatex and biberQuestion Marks instead of Citations

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
labitx
Posts: 1
Joined: Mon Oct 15, 2012 6:23 pm

Question Marks instead of Citations

Post by labitx »

Hi all.

I'm using the following code to generate a document with referencing to BibTeX. The file name is "FYPInterim.tex"

Code: Select all

\documentclass[11pt,a4paper,twoside]{report}
\usepackage{cite}
\usepackage{setspace}   % For one-half spacing
\usepackage{color}      % I want to highlight some words with colors
\usepackage{graphicx}
\begin{document}
% Main Text
\newpage
% Introduction
\chapter{Introduction} 
\paragraph{}The basics of fuel cell is understood from \cite{fcjames}.
\paragraph{}We also understand from \cite{fcryan}
\newpage

% Bibliography
\bibliographystyle{plain}
\bibliography{FYPInterim}
\end{document}
However I'm unable to run it properly as my bib file is not able to be referenced. The PDF shows [?] in the sections its supposed to show the references. The bibliography is in "FYPInterim.bib".

Code: Select all

@InBook{fcjames,
author = {James Larminie, Andrew Dicks},
title = {Fuel Cell Systems Explained},
chapter = {1-4},
publisher = {John Wiley and Sons},
year = {2002},
}

@InBook{fcryan,
author = {Ryan O'Hayre, Suk-Won Cha, Whitney Colella, Fritz B. Prinz},
title = {Fuel Cell Fundamentals},
chapter = {1-6},
publisher= {John Wiley and Sons},
year = {2009},
}
Anyone can help?

Recommended reading 2024:

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

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

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Re: Question Marks instead of Citations

Post by localghost »

And you did run BibTeX in between?


Thorsten
Post Reply