How to include references and bibliography list using bookdown word_document_2?How to make a great R reproducible exampleR “stats” citation for a scientific paperHow do I put the citations at the end of a document in a tufte handout?Relationship between R Markdown, Knitr, Pandoc, and Bookdownciting references in a rmd file & error in pandoc-citeproc.exeHow can I use a URL for the bibliography YAML element in an RMarkdown document?How to add bibliography/references to TOC in bookdownpandoc does not produce bibliography when biblio file is in YAML-metadata onlyAccented letters with R package RepmisCitations not generating in RMarkdown

How water is heavier than petrol eventhough its molecular weight less than petrol?

Compiling c files on ubuntu and using the executable on Windows

Preventing Employees from either switching to Competitors or Opening Their Own Business

How can drunken, homicidal elves successfully conduct a wild hunt?

What should the arbiter and what should have I done in this case?

Interview not reimboursed if offer is made but not accepted

Words that signal future content

How do I write "Show, Don't Tell" as a person with Asperger Syndrome?

How does an ordinary object become radioactive?

Hottest Possible Hydrogen-Fusing Stars

How to officially communicate to a non-responsive colleague?

How to retract an idea already pitched to an employer?

Should an arbiter claim draw at a K+R vs K+R endgame?

Different pedals/effects for low strings/notes than high

HT12e: How is this a 2¹² encoder?

What are the peak hours for public transportation in Paris?

Inconsistent behavior of compiler optimization of unused string

Should I give professor gift at the beginning of my PhD?

Movie about a boy who was born old and grew young

When conversion from Integer to Single may lose precision

Do any instruments not produce overtones?

Do simulator games use a realistic trajectory to get into orbit?

When 2-pentene reacts with HBr, what will be the major product?

What is wrong with this proof that symmetric matrices commute?



How to include references and bibliography list using bookdown word_document_2?


How to make a great R reproducible exampleR “stats” citation for a scientific paperHow do I put the citations at the end of a document in a tufte handout?Relationship between R Markdown, Knitr, Pandoc, and Bookdownciting references in a rmd file & error in pandoc-citeproc.exeHow can I use a URL for the bibliography YAML element in an RMarkdown document?How to add bibliography/references to TOC in bookdownpandoc does not produce bibliography when biblio file is in YAML-metadata onlyAccented letters with R package RepmisCitations not generating in RMarkdown






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I am trying to include bibliographic citations and a list of references in a MS Word file generated with Rmarkdown bookdown. However, I get the following message in the RMarkdown terminal: “pandoc-citeproc: reference Rbase not found”, where Rbase is the id of the cited material.



Although the MS Word file is generated, the citation is not recognised as such in the introduction (instead it shows “[@Rbase]”, nor the list of references is displayed (see image attached).



This is my .Rmd file:



---
title: "Report with Rmarkdown"
output:
bookdown::word_document2:
bibliography: references.bib
---

# Introduction

This is my introduction [@Rbase].

# References


This is the content of the file references.bib (UTF-8), which is located in the same folder as the .Rmd file.



@manualRbase,
title = R: A Language and Environment for Statistical Computing,
author = R Core Team,
organization = R Foundation for Statistical Computing,
address = Vienna, Austria,
year = 2016,
url = https://www.R-project.org/,



Can anyone provide any insight on how to make the citation and list of references visible?



Thank you very much in advance,
Carmen










share|improve this question

















  • 1





    Have you tried removing the leading spaces from ' bibliography: references.bib'? See first example yaml in rmarkdown.rstudio.com/… where there is no indent for the bibliography.

    – markdly
    Mar 25 at 0:33












  • Thank you so much. You nailed it. Solved.

    – user553417
    Mar 26 at 12:26

















0















I am trying to include bibliographic citations and a list of references in a MS Word file generated with Rmarkdown bookdown. However, I get the following message in the RMarkdown terminal: “pandoc-citeproc: reference Rbase not found”, where Rbase is the id of the cited material.



Although the MS Word file is generated, the citation is not recognised as such in the introduction (instead it shows “[@Rbase]”, nor the list of references is displayed (see image attached).



This is my .Rmd file:



---
title: "Report with Rmarkdown"
output:
bookdown::word_document2:
bibliography: references.bib
---

# Introduction

This is my introduction [@Rbase].

# References


This is the content of the file references.bib (UTF-8), which is located in the same folder as the .Rmd file.



@manualRbase,
title = R: A Language and Environment for Statistical Computing,
author = R Core Team,
organization = R Foundation for Statistical Computing,
address = Vienna, Austria,
year = 2016,
url = https://www.R-project.org/,



Can anyone provide any insight on how to make the citation and list of references visible?



Thank you very much in advance,
Carmen










share|improve this question

















  • 1





    Have you tried removing the leading spaces from ' bibliography: references.bib'? See first example yaml in rmarkdown.rstudio.com/… where there is no indent for the bibliography.

    – markdly
    Mar 25 at 0:33












  • Thank you so much. You nailed it. Solved.

    – user553417
    Mar 26 at 12:26













0












0








0


1






I am trying to include bibliographic citations and a list of references in a MS Word file generated with Rmarkdown bookdown. However, I get the following message in the RMarkdown terminal: “pandoc-citeproc: reference Rbase not found”, where Rbase is the id of the cited material.



Although the MS Word file is generated, the citation is not recognised as such in the introduction (instead it shows “[@Rbase]”, nor the list of references is displayed (see image attached).



This is my .Rmd file:



---
title: "Report with Rmarkdown"
output:
bookdown::word_document2:
bibliography: references.bib
---

# Introduction

This is my introduction [@Rbase].

# References


This is the content of the file references.bib (UTF-8), which is located in the same folder as the .Rmd file.



@manualRbase,
title = R: A Language and Environment for Statistical Computing,
author = R Core Team,
organization = R Foundation for Statistical Computing,
address = Vienna, Austria,
year = 2016,
url = https://www.R-project.org/,



Can anyone provide any insight on how to make the citation and list of references visible?



Thank you very much in advance,
Carmen










share|improve this question














I am trying to include bibliographic citations and a list of references in a MS Word file generated with Rmarkdown bookdown. However, I get the following message in the RMarkdown terminal: “pandoc-citeproc: reference Rbase not found”, where Rbase is the id of the cited material.



Although the MS Word file is generated, the citation is not recognised as such in the introduction (instead it shows “[@Rbase]”, nor the list of references is displayed (see image attached).



This is my .Rmd file:



---
title: "Report with Rmarkdown"
output:
bookdown::word_document2:
bibliography: references.bib
---

# Introduction

This is my introduction [@Rbase].

# References


This is the content of the file references.bib (UTF-8), which is located in the same folder as the .Rmd file.



@manualRbase,
title = R: A Language and Environment for Statistical Computing,
author = R Core Team,
organization = R Foundation for Statistical Computing,
address = Vienna, Austria,
year = 2016,
url = https://www.R-project.org/,



Can anyone provide any insight on how to make the citation and list of references visible?



Thank you very much in advance,
Carmen







r r-markdown knitr bookdown pandoc-citeproc






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 24 at 16:15









user553417user553417

814




814







  • 1





    Have you tried removing the leading spaces from ' bibliography: references.bib'? See first example yaml in rmarkdown.rstudio.com/… where there is no indent for the bibliography.

    – markdly
    Mar 25 at 0:33












  • Thank you so much. You nailed it. Solved.

    – user553417
    Mar 26 at 12:26












  • 1





    Have you tried removing the leading spaces from ' bibliography: references.bib'? See first example yaml in rmarkdown.rstudio.com/… where there is no indent for the bibliography.

    – markdly
    Mar 25 at 0:33












  • Thank you so much. You nailed it. Solved.

    – user553417
    Mar 26 at 12:26







1




1





Have you tried removing the leading spaces from ' bibliography: references.bib'? See first example yaml in rmarkdown.rstudio.com/… where there is no indent for the bibliography.

– markdly
Mar 25 at 0:33






Have you tried removing the leading spaces from ' bibliography: references.bib'? See first example yaml in rmarkdown.rstudio.com/… where there is no indent for the bibliography.

– markdly
Mar 25 at 0:33














Thank you so much. You nailed it. Solved.

– user553417
Mar 26 at 12:26





Thank you so much. You nailed it. Solved.

– user553417
Mar 26 at 12:26












1 Answer
1






active

oldest

votes


















0














Solved by 'markdly' in the comments: Removal of the leading spaces before 'bibliography: references.bib' in .Rmd file.






share|improve this answer

























    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55325835%2fhow-to-include-references-and-bibliography-list-using-bookdown-word-document-2%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    Solved by 'markdly' in the comments: Removal of the leading spaces before 'bibliography: references.bib' in .Rmd file.






    share|improve this answer





























      0














      Solved by 'markdly' in the comments: Removal of the leading spaces before 'bibliography: references.bib' in .Rmd file.






      share|improve this answer



























        0












        0








        0







        Solved by 'markdly' in the comments: Removal of the leading spaces before 'bibliography: references.bib' in .Rmd file.






        share|improve this answer















        Solved by 'markdly' in the comments: Removal of the leading spaces before 'bibliography: references.bib' in .Rmd file.







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Mar 26 at 12:44

























        answered Mar 26 at 12:30









        user553417user553417

        814




        814





























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55325835%2fhow-to-include-references-and-bibliography-list-using-bookdown-word-document-2%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

            Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

            Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript