rmarkdown: cómo usar múltiples bibliografías para un documento

[Mi entorno: Win 7 Pro / R 3.2.1 / knitr_1.12.3 / R Studio versión 0.99.892]

Estoy tratando de escribir un artículo en.Rmd formato usando R Studio, Knit -> PDF, y he estado siguiendohttp://rmarkdown.rstudio.com/authoring_bibliographies_and_citations.html para detalles de cómo llegarpandoc ypandoc-citeproc para producir una sección de referencias y citas en el texto.

Mis referencias BibTeX están en diferentes.bib archivos, que, al usar LaTeX en.Rnw archivos, todos se encuentran enmi árbol texmf local vía

\bibliography{statistics, graphics}

Parece que no puedo hacer que esto funcione conpandoc-citeproc. Mi encabezado YAML tiene lo siguiente, que funciona parauno .bib archivo, siempre que esté en el mismo directorio que la fuente.Rmd archivo:

    ---
    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
    ---

Siguiendo los consejos en el enlace anterior, probé:

bibliography: [statistics.bib,graphics.bib]

esto da:

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

[Editar: para completar, muestro el generadopandoc comando, donde parece que ambos archivos .bib se pasan correctamente]:

"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

Entonces haga todas las siguientes formas:

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

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

    bibliography: 
      - statistics.bib
      - graphics.bib

Idealmente, me gustaría poder usar uno de los siguientes formularios y no tener que copiar los archivos .bib en el directorio del documento.

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"