文本行尾 (Beamer)

文本行尾 (Beamer)

我希望在演示文稿中幻灯片末尾的右侧显示红色(或粉红色)文本(居屋编号#13),就像这里的图片一样:

图像

我已经尝试过\hfill

\begin{flushright}
  HOS#13
\end{flushright}

但我确实收到很多错误消息。

我怎样才能在相同的位置获得相同的文本?

答案1

你好,因为我正在考虑的重复解决方案需要我知道您正在使用哪个主题(MWE),这里有一个多功能的手动放置宏:

\documentclass{beamer}

\usetheme{AnnArbor}
\usepackage{tikz}
%some how stolen form here: http://tex.stackexchange.com/questions/85269/easy-absolute-positioning-in-beamer
\newcommand\doatpos[3]{%
    \bgroup%
    \begin{tikzpicture}[remember picture, overlay]
    \node[#1] at (#2) {#3};
    \end{tikzpicture}%
    \egroup%
}

\begin{document}

\frame{
        \doatpos{anchor=south east, yshift=7mm}{current page.south east}{This is text }
          }

\end{document}

相关内容