LaTeX Beamer:在每个框架内均匀分布项目
我有一个 Beamer 演示文稿,我希望在每个帧中均匀分布 itemize 环境的项目。
例如,使用选项 \frame[t]
使框架的所有内容顶部对齐。我如何“垂直对齐”这些项目,即均匀分布它们?
I have a Beamer presentation and I'd like to get the items of an itemize environment evenly spaced in each frame.
For instance, using the option \frame[t]
gets all the content of a frame top aligned. How can I "vertically justify" the items, i.e. distribute them evenly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您想要添加空间的内容(项目、图像、文本等)之间插入
\vfill
。这将自动共享所有出现的\vfill
之间的可用空间。Insert
\vfill
between your content (items, images, text, etc.) where you want space to be added. This will automatically share the available space between all occurrences of\vfill
.[t] 是一个对齐选项,意思是顶部对齐。只需调用 \frame{...} ,内容就会居中。
[t] is an alignment option meaning top align. Just call \frame{...} and the content will be centered.