我正在用 LaTex Beamer 做演示文稿,因此在最后一张幻灯片中,我想从最后一张幻灯片的中间开始书写。如何从幻灯片的中间开始。
我现在使用下面的命令将线条放在幻灯片的中心顶部,但我希望线条应该从中心的中间开始。另外,我想增加特定线条的字体大小。如何做。
提前致谢
\section{}
\begin{frame}
\centering
\textbf {Thank You for the attention}\\Suggestions for providing additional services /informations are most welcome
\end{frame}
答案1
请不要只发布代码片段,而应始终发布可编译的最小工作示例(MWE)。默认的投影仪行为是将文本垂直居中放置 - 因此如果您的文本位于框架顶部,那么您所做的就是非标准的事情。
我假设您可能正在使用\documentclass[t]{beamer}
?然后您可以使用来告诉单个幻灯片将内容居中\begin{frame}[c]
。
\documentclass[t]{beamer}
\begin{document}
\begin{frame}[c]
\centering
\textbf{\Large Thank You for the attention}
Suggestions for providing additional services/informations are most welcome
\end{frame}
\end{document}