r - Changing bibliography style -


i writing cv using markdown , want have multiple bibliography sections (one journal articles, book chapters etc). i'm using refmanagerr package , works nicely.

library("refmanager") bib <- structure(list(structure(list(title = "quantitative palaeotemperature records inferred fossil pollen , chironomid assemblages lake gilltjarnen, northern central sweden", author = structure(list(structure(list(given = "k", family = "antonsson", role = null, email = null, comment = null), .names = c("given", "family", "role", "email", "comment")), structure(list(given = "sj", family = "brooks", role = null, email = null, comment = null), .names = c("given", "family", "role", "email", "comment")), structure(list(given = "h", family = "seppa", role = null, email = null, comment = null), .names = c("given", "family", "role", "email", "comment"))), class = "person"), journal = "journal of quaternary science", year = "2006", number = "8", pages = "831-841", volume = "21"), .names = c("title", "author", "journal", "year", "number", "pages", "volume"), bibtype = "article", key = "rid:0428130725771-5", dateobj = structure(1136070000, class = c("posixct", "posixt"), tzone = "", day.mon = 0l))), strings = structure(character(0), .names = character(0)), class = c("bibentry", "bibentry"))  nocite(bib) printbibliography(bib, .opts = list(style = "latex", bib.style = "authoryear",                                      sorting = "ydnt")) 

which rendered in pdf

antonsson, k, s. brooks , h. seppa (2006). “quantitative palaeotemperature records inferred fossil pollen , chironomid assemblages lake gilltjarnen, northern central sweden”. in: journal of quaternary science 21.8, pp. 831-841.

i want change style of reference. basically, want remove quote marks , in:, , put initials after name. understand style set using tools::bibstyle , need make routine called formatarticle example tools::bibstyle shows how change sort order , cannot work out how see default jss style.

please can show me how use bibstyle.

alternatively, please can show me how make multiple bibliography sections in single document using bibliography generator built rmarkdown, can use csl file.


Comments

Popular posts from this blog

resizing Telegram inline keyboard -

command line - How can a Python program background itself? -

php - "cURL error 28: Resolving timed out" on Wordpress on Azure App Service on Linux -