BibTeX, biblatex and biber ⇒ compiling bibtex file
compiling bibtex file
compiling bibtex file in TexMaker as:
\documentclass[11pt]{article}
\usepackage{apacite}
\usepackage[margin=1in]{geometry}
\usepackage{natbib}
\title{Literature Review}
\author{A. Francese}
\date{\today}
\begin{document}
\maketitle
Books and Notes, \cite{fischer2007introduction}\\
\cite{anderson2017fracture}
\bibliographystyle{plain}
\bibliography{Books and Notes}
\end{document}
get the following error:
Package natbib Warning: Citation `fischer2007introduction' on page 1 undefined
Could you please advice?
Thank you.
Arturo
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
-
kaiserkarl13
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
compiling bibtex file
\cite commands left. The third run of LaTeX results in actual substitution of the numbers/etc. in the original location.If it doesn't show it after the sequence above (LaTeX, BibTeX, LaTeX, LaTeX), then there is likely something else wrong (e.g., the spaces in your BibTeX database are confusing it). If that's the case, post the relevant parts of your BibTeX file, too.
compiling bibtex file
thank you for your answer.
Please have a look to the bib file:
%
%Linear Elastic Fracture Mechanics
@book{fischer2007introduction,
title={Introduction to contact mechanics},
author={Fischer-Cripps, Anthony C},
volume={101},
year={2007},
publisher={Springer}
}
%
%Fracture mechanics fundamentals & applications
@book{anderson2017fracture,
title={Fracture mechanics: fundamentals and applications},
author={Anderson, Ted L},
year={2017},
publisher={CRC press}
}
Thank you.
Art
compiling bibtex file
changed the name of the file from
Books and notes.bib
to
Books.bib
it all works now!!!
Should be no space in the name of the bib-file, why??
- Stefan Kottwitz
- Site Admin
- Posts: 10397
- Joined: Mon Mar 10, 2008 9:44 pm
compiling bibtex file
Better never use spaces in file names, also in graphics files. For images, the
grffile packages fixes it.Stefan