Text FormattingError in bibliography printing..

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
Lalitp
Posts: 6
Joined: Sat Apr 06, 2013 8:25 am

Error in bibliography printing..

Post by Lalitp »

Code: Select all

@article{Reference1,
	Abstract = {Quality control is of utmost importance in the metal industry.},
	Author = {Julio Molleda, Rubén Usamentiaga, Daniel F. García},
	Journal = {IEEE TRANSACTIONS ON INDUSTRY APPLICATIONS},
	Month = {JULY/AUGUST},
	Number = {4},
	Numpages = {3},
	Pages = {1-9},
	Title = {Shape Measurement of Steel Strips Using a Laser-Based Three-Dimensional Reconstruction Technique},
	Volume = {47},
	Year = {2011}
}
I have this file named as Bibliography.bib

and i am using this file as

Code: Select all

\label{Bibliography}
\lhead{\emph{Bibliography}}  
\bibliographystyle{unsrtnat} 
\bibliography{Bibliography.bib}
Bu the content is not get printed in pdf file.
What may be the problem..?
Last edited by Stefan Kottwitz on Mon Apr 08, 2013 3:05 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

Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

Error in bibliography printing..

Post by Stefan Kottwitz »

You need to run bibtex on your document, either via command line, or using a corresponding editor feature.

Furthermore, references are only printed if they are cited in the text, i.e. \cite{Reference1} was used. Or use \nocite{Reference1} to allow printing without citing, or \nocite{*} to do this for all items in the bib file.

Stefan
LaTeX.org admin
Lalitp
Posts: 6
Joined: Sat Apr 06, 2013 8:25 am

Re: Error in bibliography printing..

Post by Lalitp »

I am new to LATEx and never used before. I tried all your suggestions by keeping it at all places and also seen other examples but still same problem..
Can you edit my code given above..
Post Reply