rmarkdown: Verwendung mehrerer Bibliographien für ein Dokument

[Meine Umgebung: Win 7 Pro / R 3.2.1 / knitr_1.12.3 / R Studio Version 0.99.892]

Ich versuche einen Artikel in @ zu schreib.Rmd Format mit R Studio, Knit -> PDF, und ich habe folgendehttp: //rmarkdown.rstudio.com/authoring_bibliographies_and_citations.htm für Details, wie man an @ kompandoc undpandoc-citeproc, um einen Abschnitt Referenzen und Zitate im Text zu erstellen.

Meine BibTeX-Referenzen befinden sich in verschiedenen.bib -Dateien, die bei Verwendung von LaTeX in.Rnw -Dateien sind alle in @ zu find my local texmf tree via

\bibliography{statistics, graphics}

Ich kann nicht scheinen, diese Arbeit mit @ zu machpandoc-citeproc. Mein YAML Header hat folgendes, das funktioniert beieine .bib Datei, solange sie sich im selben Verzeichnis befindet wie die Quelle.Rmd Datei

    ---
    title: "Notes on Testing Equality of Covariance Matrices"
    author: "Michael Friendly"
    date: '`r format(Sys.time(), "%B %d, %Y")`'
    output:
      pdf_document:
        fig_caption: yes
        keep_tex: yes
        number_sections: yes
    csl: apa.csl
    bibliography: statistics.bib
    ---

Folgenden Ratschlägen in dem oben angegebenen Link habe ich versucht:

bibliography: [statistics.bib,graphics.bib]

das gibt

pandoc-citeproc.exe: "stdin" (line 50, column 12):
unexpected ":"
expecting letter, digit, white space or "="
pandoc.exe: Error running filter pandoc-citeproc
Filter returned error status 1

[Bearbeiten: Der Vollständigkeit halber zeige ich das generiertepandoc -Befehl, wo es so aussieht, als ob beide .bib-Dateien korrekt übergeben wurden]:

"C:/Program Files/RStudio/bin/pandoc/pandoc" +RTS -K512m -RTS EqCov.utf8.md --to latex --from markdown+autolink_bare_uris+ascii_identifiers+tex_math_single_backslash --output EqCov.pdf --template "C:\R\R-3.2.1\library\rmarkdown\rmd\latex\default-1.15.2.tex" --number-sections --highlight-style tango --latex-engine pdflatex --variable graphics=yes --variable "geometry:margin=1in" --bibliography statistics.bib --bibliography graphics.bib --filter pandoc-citeproc 
output file: EqCov.knit.md

So machen Sie alle folgenden Formulare:

    bibliography: ["statistics.bib","graphics.bib"]

    bibliography: 
      - "statistics.bib"
      - "graphics.bib"

    bibliography: 
      - statistics.bib
      - graphics.bib

Idealerweise möchte ich eines der folgenden Formulare verwenden können und muss die .bib-Dateien nicht in das Dokumentverzeichnis kopieren.

bibliography: ["C:/Dropbox/localtexmf/bibtex/bib/statistics.bib","C:/Dropbox/localtexmf/bibtex/bib/graphics.bib"]

bibliography: 
 - "C:/Dropbox/localtexmf/bibtex/bib/statistics.bib"
 - "C:/Dropbox/localtexmf/bibtex/bib/graphics.bib"

Antworten auf die Frage(2)

Ihre Antwort auf die Frage