latex修改subtitle位置
时间: 2023-07-27 16:10:55 浏览: 197
subtitle edit
可以使用`\setbeamertemplate{subtitle}{}`来清除原有的subtitle,然后再使用`\subtitle[]{}`添加新的subtitle并指定位置。
例如,如果你想把subtitle放在title下方居中,可以使用以下代码:
```
\setbeamertemplate{subtitle}{}
\subtitle[]{\vspace{0.5cm}Subtitle text here}
```
其中,`\vspace{0.5cm}`可以控制subtitle与title之间的距离。你可以根据需要调整这个值。
阅读全文