Per title says, I'm looking for a way to place a small string at the bottom of my slides, preferably next to the slide numbers.
I'll be sending someone a rehearsal of a presentation that I'll be giving shortly. Since recording the screen results into big sized output, I'm considering to send the person slides with an audio of the presentation. So by putting a particular time value (ex. 02:33) next to each slide number, I'm aiming to signal when to jump to the upcoming slide.
Of course if there is some other way of merging the beamer output with the audio file that I'm not aware of, I would be willing to give a go at that as well.
Edit: MWE added.
Code:
\documentclass{beamer}
\setbeamertemplate{section in toc}[sections numbered]
\usepackage{beamerthemesplit}
\usepackage{stmaryrd}
\usepackage{comment}
\defbeamertemplate{footline}{centered page number}
{
\hspace{\fill}
\usebeamercolor[fg]{page number in head/foot}
\usebeamerfont{page number in head/foot}
\insertpagenumber,/,\insertpresentationendpage
\hspace{\fill}\vskip2pt
}
\setbeamertemplate{footline}[centered page number]
\begin{document}
\frame{\titlepage}
\end{document}