我想我的标题页的标题要左对齐.\flush{left} 不起作用。还有其他命令可以解决这个问题吗?
\documentclass{beamer}
\usetheme{Boadilla}
\makeatother
\title{ \textbf{Please help me}}
\subtitle{I want this lines to be left aligned}
\author{Thank you}
\institute{Very Much!}
\begin{document}
\begin{frame}
\thispagestyle{empty}
\titlepage
\end{frame}
\end{document}
答案1
如果您希望标题页中的所有文本都左对齐,则需要在模板left
中引入选项。titlepage
Boadilla
使用innertheme
阴影,从中,titlepage
模板看起来像:
\setbeamertemplate{title page}[default][colsep=-4bp, rounded=true,
shadow=\beamer@themerounded@shadow]
您可以引入传递left
给相应第二个可选集beamercolorbox
。
顺便说一句,如果您想使用empty
标题页而不是,则更\thispagestyle{empty}
适合beamer
使用 -style [plain]
。
\documentclass{beamer}
\usetheme{Boadilla}
\title{\textbf{Please help me}}
\subtitle{I want this lines to be left aligned}
\author{Thank you}
\institute{Very Much!}
\makeatletter
\setbeamertemplate{title page}[default][left,colsep=-4bp,rounded=true,shadow=\beamer@themerounded@shadow]
\makeatother
\begin{document}
\begin{frame}[plain]
% \thispagestyle{empty}
\titlepage
\end{frame}
\end{document}