BibTeX, biblatex and biberList of References not printed

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
lnsam22
Posts: 28
Joined: Thu Jan 13, 2011 6:47 pm

List of References not printed

Post by lnsam22 »

Hi fellow LateX users,

I recently got a new computer and reinstalled BibteX/TexnicCenter which I used for my thesis. Unfortunately, my bibliography for said thesis is now giving me errors and refusing to either cite or print the references list. Instead it gives the following error:
the bibhang has already been defined.
and that: \newlength{\bibhang}

Considering the fact that I made no changes to the .tex file whatsoever, I'm confused as to what the problem is. I checked the MiKTeX Package Manager to make sure that I have all the necessary packages so I know that that is not the problem.

Included in this post is the preamble and in-document BibteX commands. Though I'm guessing it won't run without the .bib file (I wasn't sure how to upload the file)...

Code: Select all

\documentclass[12pt]{book}% sets font size
\usepackage{amsmath}%
\usepackage{amsfonts}%
\usepackage{amssymb}%
\usepackage{graphicx}
\usepackage{chicago}% to do with biblio
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{listings}% helps write source code from matlab
\usepackage[authordate]{biblatex-chicago}
\bibliography{jobname}% its the .bib file
\usepackage{setspace}% allows for use of double spacing
\usepackage[centering,text={5.5in,9in}]{geometry}

%###########################
%\usepackage[ngerman]{babel}
%\usepackage[ansinew]{inputenc}
%###########################


%%----------------------------------------------------------
\doublespacing

\begin{document}
\nocite{*}
\printbibliography[title=References,maxnames=10,minnames=7]
\end{document}
Last edited by cgnieder on Thu Oct 18, 2012 9:50 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.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

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

List of References not printed

Post by localghost »

I don't think that this has worked once (and ever will). biblatex-chicago is a style for biblatex and actually not a package. And biblatex is missing completely.

Furthermore some important information is missing. There is no bibliography database file (*.bib) to make this example self-contained. And the example is far from being minimal.


Thorsten
Post Reply