I am trying to include some text at the right side of a beamer slide/frame, like so
\documentclass{beamer}
\usetheme{default}
\begin{document}
\begin{frame}
\hfill
\begin{description}
\item[item1] description1 text
\item[item2] description2 text
\end{description}
\end{frame}
\end{document}
However this results in the description at the left side of the slideā¦
Best Answer
Try putting stuff in columns. (Beamer manual -- 12.7 Splitting a Frame into Multiple Columns). This way you can later add content to the left side later if you wish so.
Example from the manual
The below example does not use the environment version of the command.
You can also use a
minipage
and\hfill
. This requires minimum change to your MWE. But it may be difficult to utilise the left side of the slide later on.