BibTeX, biblatex and biberSome References missing in Citations

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
mavelezq
Posts: 5
Joined: Thu Aug 23, 2012 10:11 pm

Some References missing in Citations

Post by mavelezq »

Hi,

I am new to LaTeX. I'm working with BibTeX and TexMaker to add references to my thesis but I have two problems. First it only shows some of the references and the rest look like "?". This is how it looks in the PDF.
... events [?, 3]. Sci ... bes [?, ?, 4].
I have tried the latex, bibtex, latex, latex with no luck. Second, I would like that instead of having numbers for the citations, it would be (name of author, year). Please help.

Code: Select all

\documentclass[phd]{urithesis}
%% See http://www.ele.uri.edu/info/thesis/guide for details.
\usepackage[pdftex]{graphicx}
\usepackage{subfig}
\usepackage{amsmath,amssymb}
\usepackage{rotating}
\usepackage{textcomp}
\usepackage{caption}
\usepackage[margin=3.75cm]{geometry}
% for tables and figures
\usepackage{float}
\usepackage{subfloat}
\floatstyle{ruled}
\usepackage{multirow}
\usepackage{wrapfig}
\usepackage{tabularx}
\usepackage[english]{babel}
\usepackage{cite}
\newcommand*{\citedelimiter}{+}
\renewcommand{\rmdefault}{ptm}
\newcommand{\degree}{\ensuremath{^\circ}}
\def\imagetop#1{\vtop{\null\hbox{#1}}}
%% This makes the pdf file contain active links for all references,
%% urls, the table of contents, etc., and creates a pdf menu.
\usepackage[pdfborder={0 0 0},plainpages=false,pdfpagelabels]{hyperref}
\begin{document}
The log file is attached.
Attachments
thesis.log
(29.39 KiB) Downloaded 225 times
Last edited by localghost on Mon Oct 15, 2012 7:22 pm, edited 1 time in total.

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: Some References missing in Citations

Post by localghost »

What does the BibTeX log (*.blg) say?


Thorsten
mavelezq
Posts: 5
Joined: Thu Aug 23, 2012 10:11 pm

Some References missing in Citations

Post by mavelezq »

This is the BibTeX log.

Code: Select all

This is BibTeX, Version 0.99d (TeX Live 2012)
The top-level auxiliary file: thesis.aux
A level-1 auxiliary file: chapter2.aux
The style file: uriref.bst
Database file #1: bibliography.bib
Warning--I didn't find a database entry for "Paz:2006;Paz:2007"
Warning--I didn't find a database entry for "Griffin:2004"
Warning--I didn't find a database entry for "Griffin:2007"
 
-- University of Rhode Island references, version 1.1 (2005/07/12),
--  based on IEEEtran.bst version 1.11 (2003/04/02) by Michael Shell.
--  http://www.ele.uri.edu/info/thesis/uritex/uriref.bst
-- See the manual "IEEEtran_bst_HOWTO.pdf" for usage information,
--  available at http://www.ele.uri.edu/info/thesis/IEEEtran_bst_HOWTO.pdf

Done.
(There were 3 warnings)
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Some References missing in Citations

Post by localghost »

You should check the corresponding database entries for which BibTeX gives you warnings.

Code: Select all

Warning--I didn't find a database entry for "Paz:2006;Paz:2007"
Warning--I didn't find a database entry for "Griffin:2004"
Warning--I didn't find a database entry for "Griffin:2007"
If that doesn't help you on, prepare a proper minimal example to give us an adequate problem description.
mavelezq
Posts: 5
Joined: Thu Aug 23, 2012 10:11 pm

Some References missing in Citations

Post by mavelezq »

i went into my references file "references.bib" and everything looks ok. It is in the format @article{....,}. In the text I am using the \cite{} command but it will only read 1 reference, if I include 2 or more citations it will not find them. Please let me know
Last edited by cgnieder on Mon Oct 15, 2012 11:20 pm, edited 1 time in total.
Post Reply