我想在 beamer 的右边距添加一些文本。尝试使用“background”和“eso-pic”包,但它们不起作用。我需要指定文本块的颜色、宽度和高度。
答案1
以下是使用 tikz 的一种方法:
\documentclass{beamer}
\usepackage{tikz}
\begin{document}
\begin{frame}{}
\begin{tikzpicture}[overlay,remember picture]
\node[draw=red,fill=yellow,rectangle,shift={(-0.5,0)},
text width=3cm,above,rotate=90] at (current page.east) {\color{black}\footnotesize SOME TEXT that will be broken in several lines};\end{tikzpicture}
\end{frame}
\end{document}