Используя R: офицерский пакет (R3.6.3), с этим набором строк кода ... пытаясь изменить размер шрифта в теле слайда pptx. Et seq ...
x = read_pptx()
x = add_slide(x, layout = "Title and Content", master = "Office Theme") %>%
ph_with( block_list(fpar(ftext(reportTitleLine1, prop = fp_text(font.size = 43, color = "black")))),
location = ph_location_type(type = "title") )
Хорошо, пока здесь. Затем
ph_with(block_list(fpar(ftext(driveStatsStr, prop = fp_text(font.size = 14, color = "black")))),
location = ph_location_type(type = "body") )
Создает сообщение об ошибке:
Error in ph_with(block_list(fpar(ftext(driveStatsStr, prop = fp_text(font.size = 14, :
argument "value" is missing, with no default
driveStatDir содержит:
driveStatsStr = c(totalFileCountStr, totalFileVolumeStr, currentDriveStorage, currentDriveTotalStorage, currentDriveRemainStorageStr, estRemainingBackupsStr)
где,
[1] "Total file count: 93,029 files" "Total file volume: 98 GB"
[3] "Current Drive C storage: 2.74 TB" "Drive C total capacity: 7.27 TB"
[5] "Remaining Drive C capacity: 4.53 TB" "Estimated remaining back-ups to full-capacity: 46"
Что я не так с настройкой размера шрифта содержимого тела в слайде pptx?
Au secours.