BibTeX, biblatex and biberCross-reference book name

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
Kotoschow
Posts: 28
Joined: Mon Apr 09, 2012 3:13 pm

Cross-reference book name

Post by Kotoschow »

Hi all,

I'm writing a term paper in linguistics, and I want to refer to a chapter inside a book. So I naturally used a cross-reference from an @inbook entry into a @book entry (see below). When I referred to Steed86, the output I got was:
M. Steedman. Combinators and grammars, pages 417412. Foris, Dordrecht,
1986.
That is, the cross-reference worked, but the title of the book in which Steedman (1986) appears is omitted.
If it makes a difference, I'm using the abbrvnat style with natbib.
Any ideas?


BibTex Code:

Code: Select all

@inbook{Steed86,
   author = "Steedman, Mark",
   title= "Combinators and grammars",
   crossref = "Oeh_etal86",
   pages = "417-412",
}

@book{Oeh_etal86,
   author = "Oeherle, R., Bach, E. and Wheeler, D.",
   booktitle= "Categorieal Grammars and Natural Language Structures",
   publisher = "Foris, Dordrecht",
   year = "1986" 
}
Last edited by Stefan Kottwitz on Fri Apr 12, 2013 2:41 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

kaiserkarl13
Posts: 707
Joined: Tue Mar 25, 2008 5:02 pm

Re: Cross-reference book name

Post by kaiserkarl13 »

The bibliography style you have chosen does not include the title of the book in inbook entries. You might try another bibliography style, or declaring your entries as @incollection instead of @inbook.
Kotoschow
Posts: 28
Joined: Mon Apr 09, 2012 3:13 pm

Re: Cross-reference book name

Post by Kotoschow »

Yeah, I tried using @incollection, but it's kind of ugly.
Is that it? I guess I'll just try another style. Thanks!
Post Reply