General ⇒ References warnings
-
- Posts: 8
- Joined: Wed Nov 21, 2007 9:10 am
References warnings
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
References warnings
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 8
- Joined: Wed Nov 21, 2007 9:10 am
Re: References warnings
@BOOK{key,
author = {blah},
title = {blah, blah}
Under the references tab in the navigator, it says "bib.bib (1 entries, 1 warnings)". Obviously, in this case bibtex would also print a detailed error in the output, but in my 129 entry long bibliography, there are 3 warnings, but no errors from bibtex itself when building the output. What is TeXnicCenter basing these warnings on and how can I find out what entry caused the warning?
-
- Posts: 8
- Joined: Wed Nov 21, 2007 9:10 am
Re: References warnings
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Re: References warnings
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 8
- Joined: Wed Nov 21, 2007 9:10 am
Re: References warnings
\documentclass{article}
\bibliography{bib}
Save that file and use it as the main file for a project. Then create a bib file with the following:
@BOOK{key,
author = {blah},
title = {blah, blah}
Save the file as bib.bib and if you click the references tab, it will say "bib.bib (1 entries, 1 warnings)". I just want to know where these warnings come from and how I can find out exactly what the warning is. I don't want to go through all 129 of my entries to figure out which 3 are causing the warnings.
Re: References warnings
-
- Posts: 8
- Joined: Wed Nov 21, 2007 9:10 am
Re: References warnings
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
References warnings
jamesmusik wrote: I can't follow those guidelines, because TeXnicCenter doesn't recognize a biliography included with \begin{filecontents}. […]
Obviously, you have to do some reading about LaTeX basics. I recommend lshort and l2tabu. Of course it works. And that's not a problem related to TeXnicCenter. You only have to do it the right way.
Code: Select all
\begin{filecontents*}{testbib.bib}@BOOK{texbook,author = {Donald Ervin Knuth},title = {The \TeX book},year = {1984},publisher = {Addison-Wesley}}@BOOK{latexbook,author = {Leslie Lamport},title = {\LaTeX: A Document Preparation System},year = {1994},publisher = {Addison-Wesley}}\end{filecontents*}\documentclass[12pt]{scrartcl}\usepackage[T1]{fontenc}\usepackage[latin1]{inputenc}\usepackage[english]{babel}\usepackage{blindtext}\begin{document}\blindtext\cite{texbook}\medskip\blindtext\cite{latexbook}\bibliographystyle{unsrt}\bibliography{testbib}\end{document}
Code: Select all
@BOOK{key,author = {blah},title = {blah, blah}
jamesmusik wrote: […] I don't want to go through all 129 of my entries to figure out which 3 are causing the warnings.
You should be aware of the fact that your initiative is demanded and not that of others to solve your problem.
Best regards
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 8
- Joined: Wed Nov 21, 2007 9:10 am