I have read a docx file into R using officer package. Here is the code I used:
library(officer)
files = list.files()
doc <- read_docx(files[1])
content = docx_summary(doc)
The resulting dataframe contains all paragraphs, but not the text in the footnotes. Is there any way to retrieve that, too?