Still learning a lot about R, so I apologize if I'm violating any norms here.
I'm using blogdown for my personal website (hosted via Netlify). I'm authoring a post and, specifically, I'm trying to insert scholarly references into this blogpost. Unfortunately, the citation key is not being read for some reason.
The text is below...
I'm particularly interested in incentives to institutions and researchers for making their work essentially "born open" [see @rouderWhatWhyHow2016].
I've checked to see if the citation key accurate (it is). There are no errors that are generated when the website is rendered. In fact, the text above is exactly as is it renders online.
My YAML header is below:
---
title: What can open science learn from how we fight pollution?
author: Chris
date: '2019-01-13'
slug: what-can-open-science-learn-from-how-we-fight-pollution
categories:
- open science
tags:
- Open science
image:
caption: ''
focal_point: ''
bibliography: r-references.bib
link-citations: TRUE
bilbio-style: "apalike"
---
The citation key is below:
@Article{rouderWhatWhyHow2016,
title = {The What, Why, and How of Born-Open Data},
volume = {48},
issn = {1554-3528},
doi = {10.3758/s13428-015-0630-z},
language = {en},
number = {3},
journal = {Behavior Research Methods},
author = {Jeffrey N. Rouder},
month = {sep},
year = {2016},
pages = {1062-1069},
file = {/Users/chriscastille/Zotero/storage/JRHT7B9U/rouder2015.pdf;/Users/chriscastille/Zotero/storage/SCNJSG6F/Rouder - 2016 - The what, why, and how of born-open data.pdf},
}
Any advice?
Chris