Created
August 17, 2016 20:42
-
-
Save alexsingleton/23407b3213d8c2c4d72ec655b0532188 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
file_journals <- ReadBib("journals.bib") | |
dates <- unlist(unique(file_journals$year))[order(unlist(unique(file_journals$year)),decreasing = TRUE)] | |
#Prints recerences | |
for (date in dates) { | |
cat(paste0("##",date),"\n") | |
print(file_journals[list(year=date)],.opts = list(style="markdown",bib.style ="authoryear" ,max.names =10,dashed=FALSE)) | |
cat("\n") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment