我正在尝试为我的幻灯片添加标题。我在这里查看文档,它说:“设置幻灯片标题几乎所有幻灯片布局都有一个标题占位符,任何基于布局的幻灯片在应用布局时都会继承。访问幻灯片的标题是一种常见的操作,并且有一个形状树上的专用属性:
title_placeholder = slide.shapes.title
title_placeholder.text = 'Air-speed Velocity of Unladen Swallows'
"
实际上我的幻灯片布局没有title_placeholder。
我运行了这段代码来找出我有哪些占位符:
for shape in slide.placeholders:
... print('%d %s' % (shape.placeholder_format.idx, shape.name))
并得到:
11 Text Placeholder 3
12 Text Placeholder 4
13 Text Placeholder 2
15 Text Placeholder 1
所以现在我想向这些占位符添加文本——其中一个是标题——我会弄清楚是哪一个。
该文档有如何使用等在占位符中插入表格、图片和图表insert_picture
。insert_table
但没有insert_text
。
如何添加文字?