BibTeX, biblatex and biber ⇒ how to cross reference two chapters appearing in same book?
how to cross reference two chapters appearing in same book?
@incollection{Chapter1,
author = "John Author",
title = "Ch1 title",
booktitle = "book title",
editor = "Jack Editor",
publisher = "Publisher name",
note = "DO IT NEED TO ENTER SOMETHING HERE?"
}
@incollection{Chapter2,
author = "John Author",
title = "Ch2 title",
booktitle = "book title",
editor = "Jack Editor",
publisher = "Publisher name",
note = "DO IT NEED TO ENTER SOMETHING HERE?"
}
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
how to cross reference two chapters appearing in same book?
Code: Select all
@incollection{Chapter1,
author = "John Author",
title = "Ch1 title",
crossref = "Book1",
pages = "101--120"
}
@incollection{Chapter2,
author = "John Author",
title = "Ch2 title",
crossref = "Book1",
pages = "121--140"
}
@book{Book1,
title = "Book Title",
booktitle = "Book Title",
editor = "Jack Editor",
publisher = "Publisher name",
address = "Someplace",
year = "2010"
}
Re: how to cross reference two chapters appearing in same bo
Another question is whether there is a convention of how a paper that is a part of a book should be reference in another paper that is a part of the same book.