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
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
-
- 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: 10335
- 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