I do not understand why my attempts to introduce horizontal spacing in beamer (with hspace or typographical spacing) fail when within a minipage:
\documentclass[10pt]{beamer}
\begin{document}
\frame{
text \\
\hspace{1cm} text \\
\begin{minipage}{5cm}
text \\
\hspace{1cm} \quad text
\end{minipage}
}
\end{document}
Why? How can I introduce this spacing? Thanks in advance.
