由于尝试制作没有编号的脚注时出现问题(目的是包含图像来源),我尝试使用带有小字体的 beamercolorbox(可能不是最正确的选择,但可以产生我想要的无边框文本)。
以下是我的示例:
\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}
似乎没有遵守小页面的高度参数。此示例包含我想要的内容,左侧的图像(此处为文本),右侧的文本(因此我在第一个小页面中使用列),底部的“脚注”(我无法使其工作)。只是为了澄清一下,我读了几篇关于框内文本对齐的帖子,我希望框对齐
谢谢大家。
答案1
您可以简单地保留原来的想法并使用不带数字的脚注:
\documentclass{beamer}
\newcommand{\nonumbernote}[1]{%
{%
\setbeamertemplate{footnote}{%
\parindent 1em\noindent%
\raggedright
\insertfootnotetext\par%
}
\footnotetext[42]{#1}
}
}
\begin{document}
\begin{frame}
\nonumbernote{Fuente: Experimental analysis, modeling and simulation of a solar energy accumulator with paraffin wax as PCM}
\end{frame}
\end{document}