We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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:
cat "bib.bibtex" | pandoc -f bibtex -t csljson -o "bib.json"
[{ "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:
motion_picture
Scorsese, M. (Director). (1976). Taxi Driver [Film]. Columbia Pictures.
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. ↩
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
So, if example data in Biblatex format would look like this:
And was easily converted to CSL-JSON using pandoc,
cat "bib.bibtex" | pandoc -f bibtex -t csljson -o "bib.json"
resulting in:
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:Footnotes
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. ↩
The text was updated successfully, but these errors were encountered: