Is it possible to adjust the font size of the prefix Figure when captioning an included image? Furthermore, is it possible to refer to a picture in a meaningful way without using a caption; I tried but no number was attributed to the figure I get double ?? instead. I am using the package \hypcap by the way.
Thanks
MWE:
\documentclass{beamer}
\mode<presentation> {
}
\makeatletter
\let\insertsupervisor\relax
\newcommand\supervisortitle{Supervisor}
\mode<all>
{
\newcommand\supervisor[1]{\def\insertsupervisor{#1}}
\titlegraphic{}
}
\defbeamertemplate*{title page}{supdefault}[1][]
{
\vbox{}
\vfill
\begingroup
\centering
\begin{beamercolorbox}[sep=8pt,center,#1]{title}
\usebeamerfont{title}\inserttitle\par%
\ifx\insertsubtitle\@empty\relax%
\else%
\vskip0.25em%
{\usebeamerfont{subtitle}\usebeamercolor[fg]{subtitle}\insertsubtitle\par}%
\fi%
\end{beamercolorbox}%
\vskip1em\par
\begin{beamercolorbox}[sep=8pt,center,#1]{author}
\usebeamerfont{author}\insertauthor
\end{beamercolorbox}
\ifx\insertsupervisor\relax\relax\else
\begin{beamercolorbox}[sep=8pt,center,#1]{author}
\usebeamerfont{author}\supervisortitle:~\insertsupervisor
\end{beamercolorbox}\fi
\begin{beamercolorbox}[sep=8pt,center,#1]{institute}
\usebeamerfont{institute}\insertinstitute
\end{beamercolorbox}
\begin{beamercolorbox}[sep=8pt,center,#1]{date}
\usebeamerfont{date}\insertdate
\end{beamercolorbox}\vskip0.5em
{\usebeamercolor[fg]{titlegraphic}\inserttitlegraphic\par}
\endgroup
\vfill
}
\setbeamertemplate{title page}[supdefault][colsep=-4bp,rounded=true,shadow=\beamer@themerounded@shadow]\makeatother
\usepackage{graphicx} % Allows including images
\usepackage{booktabs} % Allows the use of \toprule, \midrule and \bottomrule in tables
\usepackage[utf8]{inputenc}
\usepackage{color}
\usepackage{hyperref}
\usepackage{siunitx}
\usepackage{hypcap}
\usepackage{amsmath}
\usepackage{pgf}
\usepackage[font={scriptsize}]{caption}
\usetheme{CambridgeUS}
\usecolortheme{seagull}
\setbeamertemplate{bibliography item}[text]
\begin{document}
\begin{frame}
\frametitle{Cooling power measurements}
\begin{columns}[c]
\column{.5\textwidth}
\begin{figure}
\vspace{-.5cm}
\includegraphics[width=.9\linewidth]{fig5a.png}\label{fig:5a}
\end{figure}
\footnotesize
\begin{enumerate}
\item He-Rb mixture with 200 bar He
\item About 5 mW of cooling power
\end{enumerate}
\column{.5\textwidth}
\begin{figure}
\vspace{-.5cm}
\includegraphics[width=.9\linewidth]{fig5b.png}\label{fig:5b}
\end{figure}
\footnotesize
\begin{enumerate}
\item Ar-Rb mixture with 230 bar Ar
\item Order of magnitude larger CP
\end{enumerate}
\end{columns}
\footnotesize
\begin{itemize}
\centering
\item Expected cooling power red crosses
\item Observed deflection angle blue crosses
\end{itemize}
\end{frame}
\begin{frame}
\frametitle{Temperature Gradient}
\footnotesize
Using a heat transfer model \cite{24}, after a cooling time $t$, the expected temperature gradient profile is:
\begin{equation}
\frac{dT}{dr}=-\frac{P_{cool}}{2\pi \kappa}\frac{e^{-\alpha z}}{r}\left[ \exp\left(\frac{2r^2}{\omega^2}\right)-\exp\left(\frac{2r^2}{\omega^2-8Dt}\right)\right]
\end{equation}
\begin{description}
\item[Cooling]Probe beam deflected towards the cooling beam\ref{fig:5a}
\item[Heating]Probe beam deflected away from the cooling beam\ref{fig:5b}
\end{description}
\end{frame}
\end{document}
