Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add APA7 bib style for movies/films #66

Open
k127 opened this issue Dec 7, 2022 · 0 comments · May be fixed by #67
Open

Add APA7 bib style for movies/films #66

k127 opened this issue Dec 7, 2022 · 0 comments · May be fixed by #67

Comments

@k127
Copy link

k127 commented Dec 7, 2022

So, if example data in Biblatex format would look like this:

@movie{scorsese1976,
  author    = {Scorsese, Martin}, 
  year      = {1976},
  title     = {Taxi Driver},
  publisher = {Columbia Pictures},
}

And was easily converted to CSL-JSON using pandoc,

cat "bib.bibtex" | pandoc -f bibtex -t csljson -o "bib.json"

resulting in:

[{
  "author": [{"family": "Scorsese", "given": "Martin"}],
  "id": "scorsese1976",
  "issued": {"date-parts": [[1976]]},
  "publisher": "Columbia Pictures",
  "title": "Taxi Driver",
  "type": "motion_picture"
}]

In the reference list, that entity type (motion_picture), according to the APA Publication Manual, sec. 10.12, 7th edition,1 should appear like this:

Scorsese, M. (Director). (1976). Taxi Driver [Film]. Columbia Pictures.

Footnotes

  1. https://apastyle.apa.org/style-grammar-guidelines/references/examples/film-television-references#1; Note that only the first section of this page is being reflected in this issue.

@k127 k127 linked a pull request Dec 7, 2022 that will close this issue
@k127 k127 changed the title Add APA bib style for movies/films Add APA7 bib style for movies/films Dec 11, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant