due to problems trying to make a footnote without number (the objective is to include the source of an image), I tried using beamercolorbox with a tiny font (maybe is not the most correct option, but produces what I want, text without a border).
I read the following links with no sucess: link1 link2
Here is my example:
\documentclass[pdf]{beamer}
\usepackage[spanish,es-tabla,es-nodecimaldot]{babel}
\usepackage[utf8]{inputenc}
\setbeamerfont{footnote}{size=\tiny}
\mode<presentation>{\usetheme{Warsaw}}
\begin{document}
\begin{frame}{Introducción}
\begin{minipage}[0.9\textheight]{\textwidth}
\begin{columns}
\begin{column}[]{0.5\textwidth}
texto 1
\end{column}
\begin{column}[]{0.5\textwidth}
texto 2
\end{column}
\end{columns}
\end{minipage}
\begin{minipage}[0.1\textheight]{\textwidth}
\begin{beamercolorbox}[width=\textwidth,bottom]{}
{\tiny
Fuente: Experimental analysis, modeling and simulation of a solar energy accumulator with paraffin wax as PCM}
\end{beamercolorbox}
\end{minipage}
\end{frame}
It seems like the height argument of the minipages is not respected. This example contains what I want, an image (here text) at the left, text at the right (because of this I use columns in first minipage), and the 'footnote' at the bootom (wich I can't make to work). Just to clarify, I read several post asking about alignment of text inside a box, I want the box alig
Thanks to everyone.

beamercolorboxenvironment does not provide awidthoption or abottomoption... – Paul Gaborit Dec 04 '17 at 08:34minipageis its second optional argument:\begin{minipage}[t][0.9\textheight]{\textwidth}...– Paul Gaborit Dec 04 '17 at 08:38