I want to copy the content of two slides from two pptx files into one pptx file using officer in R.
I thave started with the following code:
slide1 = read_pptx('1.pptx')
slide2 = read_pptx('2.pptx')
slide2_content = slide2 %>% slide_summary()
Now - how do I get all content from slide2 attached to slide1 and save it to a new file?