bibtex: author and editor inbook
The idea is that an inbook
entry refers to a book
entry, and therefore should not have an editor
. So the following works without warning:
@inbook{inbook,
author = {A. Inbook-Author},
title = {The title of the inbook entry},
pages = {1--5},
year = 2013,
crossref = "book",
volume = 1,
}
@book{book,
title = {A title of the book entry},
year = 2013,
editor = {E. Book-Editor},
publisher = {Book Publishing Inc.},
}
This is also reflected by the fact that an inbook
entry has no booktitle
field, not even as an option. BibTeX
does not enforce that every inbook
has a crossref
to a book
, but I guess this is the only sensible way to use it. (A little less convincing is the fact that a book
also can not have author
and editor
.)
What you are looking for is probably the incollection
entry. This entry type even requires a booktitle
field. Note also that there is no collection
entry type, that would be the natural target of a cross-referencing incollection
entry. An incollection
entry can have both an author
, and an editor
field.
The inproceedings
entry is just a variant of incollection
where the publisher
field is optional (and some more minor variations). So it should not be seen as an entry type that usually cross-reference to a proceedings
entry. The analogy breaks here, unfortunately. The proceedings
type, however, is again quite similar to a book with optional publisher
.
Note, however, that those rules are not infallible. When they were laid down a number of aspects of publishing were not addressed. So these helpful hints of BibTeX documentation always apply:
The standard style’s thirteen entry types do reasonably well at formatting most entries, but no scheme with just thirteen formats can do everything perfectly. Thus, you should feel free to be creative in how you use these entry types (but if you have to be too creative, there's a good chance you're using the wrong entry type).
Don't take the field names too seriously. Sometimes, for instance, you might have to include the publisher's address along with the publisher's name in the publisher field, rather than putting it in the address field. Or sometimes, difficult entries work best when you make judicious use of the note field.
Don't take the warning messages too seriously. Sometimes, for instance, the year appears in the title, as in The 1966 World Gnus Almanac. In this case it's best to omit the year field and to ignore BibTEX’s warning message.
(Emphasis mine)