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}
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
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}
}