BibTeX, biblatex and biberNo complete bibliography

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
dagna
Posts: 16
Joined: Wed Mar 03, 2010 7:28 pm

No complete bibliography

Post by dagna »

Hi!

I have problem with my bibliography. I have bibtex file:

Code: Select all


@BOOK{hagen,
AUTHOR =       {William von Hagen},
TITLE =        {Systemy plików w Linuksie},
PUBLISHER =    {Wydawnictwo Helion},
YEAR =         {2002},
}

@BOOK{silberschwatz,
AUTHOR =       {A. Silberschatz and P. B. Galvin},
TITLE =        {Podstawy systemów operacyjnych},
PUBLISHER =    {Wydawnictwa Naukowo-Techniczne},
EDITION =      {piąte},
YEAR =         {Warszawa 2002},
}

@article{artykul:loop_AES,
    author  = "Skarbimir Kwiatkowski", 
    title   = "Loop-AES – szyfrowane systemy plików", 
    year    = "2004", 
    journal = "Linux+", 
    %volume  = "1", 
    number  = "1", 
    pages   = "30--37" 
}

@article{artykul:truecrypt,
    author  = "Maciej Rutecki", 
    title   = "Truecrypt", 
    year    = "2007", 
    journal = "Dragonia Magazine", 
    %volume  = "1", 
    number  = "12", 
    pages   = "20--23" 
}
And I have follofing return:
[1] Kwiatkowski, S.
[2] Rutecki, M.
[3] Silberschatz, A., and Galvin, P. B. Podstawy systemów operacyjnych,
piate ed. Wydawnictwa Naukowo-Techniczne, Warszawa 2002.
[4] von Hagen, W. Systemy plików w Linuksie. Wydawnictwo Helion.
I declared my bibliography following:

Code: Select all

\bibliographystyle{acm}
\addcontentsline{toc}{section}{Literatura}      
\newpage\bibliography{bibliografia}
Where is rest?

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX books
User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

No complete bibliography

Post by frabjous »

I think the problem is with the % that you find before two of the volume entries. You cannot "comment out" lines in BibTeX .bib files the same was as in LaTeX.

Either remove those lines completely, or un-comment them.
(Or read more about comments in .bib files here.)
dagna
Posts: 16
Joined: Wed Mar 03, 2010 7:28 pm

Re: No complete bibliography

Post by dagna »

Thanks a lot, now it works perfectly!
Post Reply