Write “this volume” in BibTeX

bibtex

I'm writing a book chapter and want to cross reference other chapters in the same book. The desired citation is: (Author, this volume).

However, when I use year={this volume} in BibTeX (with natbib / apalike) the outcome is (Author, lume) because a year is expected. How can I get my desired output?

Best Answer

The simplest solution is to write (\citeauthor{xxx}, this volume) as recommended by @mico.

Another solution would be to follow the approach described in: Show more than four digits in year citation

To copy apalike.bst and change the entry year field.or.null purify$ #-1 #4 substring$ in the copy to:

year field.or.null purify$ #-1 #14 substring$
Related Question