Style error: apa.csl: "speech" type & "event-place"
                    Using pandoc-citeproc with apa.csl, "event-place" in type "speech" is not rendered.
apa.csl seems to use "publisher-place" for formatting "speech" items.
Since Zotero exports its "Place" field to both "event-place" and "publisher-place", this effect is not seen when using Zotero.
It would be nice if apa.csl could be made to use "event-place" instead of "publisher-place" for "speech".
(I think the same problem was spotted and fixed in chicago-author-date.csl a short while ago, and I suspect other styles might be affected, too.)
Note that in both Zotero and pandoc, "lecture" in the "D’Erasmo" item is not capitalized in the output, while "Paper" in the "Teplin" item is (both are lowercase in the data). I hope this can be fixed, too.
pandoc example:
                            apa.csl seems to use "publisher-place" for formatting "speech" items.
Since Zotero exports its "Place" field to both "event-place" and "publisher-place", this effect is not seen when using Zotero.
It would be nice if apa.csl could be made to use "event-place" instead of "publisher-place" for "speech".
(I think the same problem was spotted and fixed in chicago-author-date.csl a short while ago, and I suspect other styles might be affected, too.)
Note that in both Zotero and pandoc, "lecture" in the "D’Erasmo" item is not capitalized in the output, while "Paper" in the "Teplin" item is (both are lowercase in the data). I hope this can be fixed, too.
pandoc example:
pandoc -s -F pandoc-citeproc -t markdown-citations << EOT
Foo [@item1].
Bar [@item2].
# References {-}
---
csl: apa.csl
references:
- author:
  - family: Teplin
    given: Linda A.
  - family: McClelland
    given: Gary M.
  - family: Abram
    given: Karen M.
  - family: Washburn
    given: Jason J.
  id: item2
  issued:
    date-parts:
    - - 2005
      - 3
  title: 'Early violent death in delinquent youth: A prospective longitudinal study'
  type: speech
  genre: paper
  event: Annual Meeting of the American Psychology-Law Society
  event-place: La Jolla, CA
- author:
  - family: "D’Erasmo"
    given: Stacy
  id: item1
  issued:
    date-parts:
    - - 2000
      - 4
      - 26
  title: The craft and career of writing
  type: speech
  genre: lecture
  event-place: Northwestern University, Evanston, IL
...
EOT                This is an old discussion that has not been active in a long time. Before commenting here, you should strongly consider starting a new discussion instead. If you think the content of this discussion is still relevant, you can link to it from your new discussion.
 Upgrade Storage
 Upgrade Storage
D’Erasmo, S. (). *The craft and career of writing*. Lecture,
Northwestern University, Evanston, IL.
Teplin, L. A., McClelland, G. M., Abram, K. M., & Washburn, J. J. ().
*Early violent death in delinquent youth: A prospective longitudinal
study*. Paper presented at the Annual Meeting of the American
Psychology-Law Society, La Jolla, CA.
The pandoc example is super helpful, but if you could post those on pastebin.com or gist.github.com in the future that'd be great (I think that's why the dates are missing, though not sure). Copying from here messes up the spaces and as you know YAML is picky about those.