BibTeX, biblatex and biber ⇒ How to reference InBook with full details
How to reference InBook with full details
I am trying to make a reference to a specific chapter in a Handbook using JabRef. I am assuming that I need to use "Inbook" entry. Problem I am facing is that Inbook entry or any other entry don't have enough fields for my need.
To be more specific: I want to refer a
1)Chapter (e.g. Ch. 53)
2) it's title (e.g. Rehab. Robotics)
3) In a Part (e.g. Part F: Field Robotics)
4) Editor of the Part (e.g. Someone's name)
5) Authors of the chapter (e.g. x and y and z)
6) Editors of the whole book
7) Name of the Handbook
....
Is it necessary to enter the title of the chapter if you are specifying the number of the chapter? How detailed should the citation be?
Thanks
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
-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
How to reference InBook with full details
It actually sounds like you may be citing a collection (not simply a book), meaning a series of articles written by different authors compiled into one collection (which happens to be a book), with each article/section/chapter having its OWN title. Inbook uses the title of the entire book as its title field, incollection requires both (section) title and booktitle.
I'm not sure how to handle the "part" under all situations, unfortunately. If the Part is actually its own book (the title of which is "Part F: Robotics"), then your entry looks like
3) In a Part (e.g. Part F: Field Robotics)
Code: Select all
@incollection{key,
chapter = 53,
title = "Rehab. Robotics",
editor = "Someone",
author = "x and y and z",
booktitle = "Part F: Robotics",
series = "Handbook of Stuff I Care About",
publisher = "snthoeunh",
address = "nthoseth",
pages = "543--501",
year = 1896
}
Code: Select all
@incollection{key,
chapter = 53,
title = "Rehab. Robotics",
editor = "Someone",
author = "x and y and z",
booktitle = "Handbook of Stuff I Care About",
publisher = "snthoeunh",
address = "nthoseth",
pages = "543--501",
year = 1896
}