Pandoc insert appendix after bibliography

10,149

Solution 1

Eventually reference handling will change to make it possible to put the references wherever you like (https://github.com/jgm/pandoc/issues/771), but right now there's no easy way to do it.

As suggested here, you could put your appendix in a separate file, use pandoc to convert it to a LaTeX fragment, then include that fragment using the --include-after-body flag. It would then come after the bibliography.

Solution 2

With newer pandoc versions, you can specify the bibliography's position with <div id="refs"></div> source

This is some text [@item1]

This is more text [@item2]

# References

<div id="refs"></div>

# appendix

Solution 3

When working in an Rmarkdown document, enter the following text where the citations are to be located. It can be placed in any part of the document allowing other materials, like an appendix, to follow as necessary. The method relies on pandoc's fenced divs which will work in Rmarkdown.

::: {#refs}
:::

The aforementioned code should not be in an R code chunk, rather it should be placed on blank lines by themselves. Once processed by pandoc via knitter, this code will produce the same result as <div id="refs"></div> mentioned in the answer by @soca. The two lines of code do consistently allow for exact placement of the references in any section of the document.

In the example below, references are placed first under a heading of the same name while all of the code chunks in the document are placed afterwards in a code appendix. Here is the pandoc fenced div placed in Rmarkdown that can be used to generate the image that follows.

# References
::: {#refs}
:::

# Appendix A: R Code
```{r ref.label=knitr::all_labels(), echo=TRUE, eval=FALSE}

```

Provided there is a .bib file identified in the yaml frontmatter, the preceding Rmarkdown produces output similar to the following: enter image description here

Helpful links:

Share:
10,149
luciano
Author by

luciano

Updated on June 15, 2022

Comments

  • luciano
    luciano almost 2 years

    I'm using the knitr package and pandoc in R to convert a .Rmd file to a PDF. Pandoc is linked to a .bib file and automatically inserts the bibliography at the end of the PDF The entries in my .bib file look like these, taken from http://johnmacfarlane.net/pandoc/demo/biblio.bib:

    @Book{item1,
            author="John Doe",
            title="First Book",
            year="2005",
            address="Cambridge",
            publisher="Cambridge University Press"
      }
    
    @Article{item2,
             author="John Doe",
             title="Article",
             year="2006",
             journal="Journal of Generic Studies",
             volume="6",
             pages="33-34"
    }
    

    To build my bibliography, I'm using the following function, taken from: http://quantifyingmemory.blogspot.co.il/2013/02/reproducible-research-with-r-knitr.html

    knitsPDF <- function(name) {
      library(knitr)
      knit(paste0(name, ".Rmd"), encoding = "utf-8")
      system(paste0("pandoc -o ", name, ".pdf ", name, ".md --bibliography /Users/.../Desktop/test.bib --csl /Users/.../Desktop/taylor-and-francis-harvard-x.csl"))
    }
    

    The contents of my .Rmd file is:

    This is some text [@item1]
    
    This is more text [@item2]
    
    # References
    

    And outputted PDF looks like this:

    enter image description here

    If I try to insert an appendix, the references still print at the end of the document, like this:

    enter image description here

    How do insert an appendix after the references?