officer

R Markdown PowerPoint Slide Customization

孤街醉人 提交于 2019-12-07 23:43:25
--- title: "Untitled" author: "April 2018" date: "4/9/2019" output: powerpoint_presentation --- ```{r setup, include=FALSE} knitr::opts_chunk$set(echo = FALSE) ``` ## Slide with Plot ```{r pressure, fig.width=30, fig.asp=0.618, out.width="200%"} plot(pressure) ``` I'm reading R Studio's guide to creating PowerPoint presentations in R Markdown . I'd like to be able to customize my slides to include two things: Stretch the image size to the full width of the slide Move the title up a bit and left align it After doing some internet searches I just can't determine how to do this properly. Maybe

Table and Figure cross-reference officer R

て烟熏妆下的殇ゞ 提交于 2019-12-07 06:07:24
问题 I would like to be able to cross-reference a table or figure in a word document using the officer R package. I have come across these materials so far but they do not seem to have a solution: https://davidgohel.github.io/officer/articles/word.html#table-and-image-captions and a similar question add caption to flextable in docx In both of these I can only insert a caption as a level 2 header and not a true table caption. What I want to be able to do in Word is Insert -> Cross-reference and go

Change font size and style in officeR's body_add_table() function

自闭症网瘾萝莉.ら 提交于 2019-12-01 10:56:30
I am trying to change the font size in a table within the officer's body_add_table() function, with no success. How can I do this? I am using the following code: body_add_table(my_doc, value = tab02, style = "table_template", font.size = 10) 来源: https://stackoverflow.com/questions/53223526/change-font-size-and-style-in-officers-body-add-table-function

Change font size and style in officeR's body_add_table() function

匆匆过客 提交于 2019-12-01 09:26:06
问题 I am trying to change the font size in a table within the officer's body_add_table() function, with no success. How can I do this? I am using the following code: body_add_table(my_doc, value = tab02, style = "table_template", font.size = 10) 来源: https://stackoverflow.com/questions/53223526/change-font-size-and-style-in-officers-body-add-table-function