I am trying change the properties of a word document with the officer library and I am having problems to succeed.
I need to change the margins of the entire document.
Let's say I have this document:
barometer <- read_docx %>%
body_add_par("A title", style = "heading 1") %>%
body_add_par("Hello world!", style = "Normal") %>%
print(target = "test.docx")
Does any one knowns to set the margins of the document?
Thanks!