Upon using the following command in pandoc:
pandoc --filter pandoc-citeproc yaml.yaml md.md -o paper.pdf
My reference section was omitting the title to the book in an inbook citation. For example, my reference was exported as:
Hemingway, E. (1999). The killers. In J. Updike & K. Kenison (Eds.), (pp.78-80). Boston, MA: Houghton Mifflin.
But should have been:
Hemingway, E. (1999). The killers. In J. Updike & K. Kenison (Eds.), The best American short stories of the century (pp.78-80). Boston, MA: Houghton Mifflin.
Upon further investigation of the bibTeX source I noticed that the book title was as follows:
series = {The best American short stories of the century}
But when I manually changed it to:
booktitle = {The best American short stories of the century}
The reference was successful incorporating the title of the book in an inbook citation. The issue for me is that I must (1) manually go through each citation and change the series
designation to booktitle
and (2) remember that I must do this for each paper I work on among all the other things I need to remember for this process of creating manuscripts. I’m assuming this is intended behavior which is why I’m simply sending this to general feedback vs help and feature requests.
If I’m doing it wrong I would appreciate the feedback.