General ⇒ Names of book editors not appearing in bibliography
Names of book editors not appearing in bibliography
@BOOK{Anderson2001,
AUTHOR = {Airasian, L. W. and Cruikshank, K. A. and Mayer, R. E. and Wittrock, M. C.},
editor = {Anderson, L. W. and Krathwohl, D. R.},
TITLE = {A Revision of {B}loom's Taxonomy of Educational Objectives},
PUBLISHER = {Longman},
YEAR = {2001},
address = {New York}
}
It runs fine, but the problem is that the editors (Anderson and Krathwohl) do not appear in the resulting bibliography. The authors are listed, along with the title and the other information, but no editors. I have used LaTeX for many years and I don't recall this problem ever appearing before.
Any ideas?
Here is the call to the bibliography file in the main Latex file:
\bibliographystyle{unsrt}
\bibliography{C:/bibfiles/ruby}
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
Names of book editors not appearing in bibliography
Code: Select all
Database file #1: ruby.bib
Warning--can't use both author and editor fields in Anderson2001
After some searches, I've realized that, in fact, there are two different editions with the same title: complete (ISBN 0321084055), and abridged (ISBN 080131903X). Look the different covers here and here. In both cases there are two editors (Anderson, L. W. and Krathwohl) and six contributors (D. R. and Airasian, P. W. and Cruikshank, K. A. and Mayer, R. E. and Pintrich, P. R. and Raths, J. and Wittrock, M. C.). I think you can consider all of them as authors. So, you may have two different entries:
Code: Select all
@BOOK{Anderson2001a,
AUTHOR = {Anderson, L. W. and Krathwohl, D. R. and Airasian, P. W. and
Cruikshank, K. A. and Mayer, R. E. and Pintrich, P. R. and
Raths, J. and Wittrock, M. C.},
TITLE = {A Taxonomy for Learning, Teaching, and Assessing: A Revision of {B}loom's
Taxonomy of Educational Objectives},
PUBLISHER = {Allyn \& Bacon},
YEAR = {2001},
EDITION ={Abridged}
}
@BOOK{Anderson2000c,
AUTHOR = {Anderson, L. W. and Krathwohl, D. R. and Airasian, P. W. and
Cruikshank, K. A. and Mayer, R. E. and Pintrich, P. R. and
Raths, J. and Wittrock, M. C.},
TITLE = {A Taxonomy for Learning, Teaching, and Assessing: A Revision of {B}loom's
Taxonomy of Educational Objectives},
PUBLISHER = {Longman},
YEAR = {2001},
EDITION={Complete}
}