在 Beamer 中,我想将其设置frame[t]{ ... }
为全局默认值frame
。
如何将该选项设置t
为默认值?
ps 我知道可以通过像framet{ ... }
with一样定义我的自定义命令\renewcommand
来实现。但我正在寻找另一种无需修改命令名称即可实现它的方法frame
,因为我正在使用 LyX。
\documentclass[english,dvipdfmx]{beamer}
\begin{document}
\begin{frame}{Sample Frame 1}
Normally, the text is placed in the middle (default).
\end{frame}
\begin{frame}[t]{Sample Frame 2}
If you set the option `t' to the frame command, the text is placed at the top.
I would like make this as default.
\end{frame}
\end{document}