I see several beamer templates that use some dots as a navigation bar for each section, in the header part. My question is, how I can create a navigation bar, vertically, on the right side of each slide, for all slides without separating in sections (like being a progression bar with dots)?
Thank you for any help!
Edit:
I have this horizontal bar with dots:
\documentclass{beamer}
\definecolor{frenchblue}{rgb}{0.0, 0.45, 0.73}
\usepackage[absolute]{textpos}
\usepackage{tikz}
\setbeamertemplate{headline}{%
\leavevmode%
\hbox{%
\begin{beamercolorbox}[wd=\paperwidth,ht=4.8ex,dp=0.125ex]{palette}%
\insertsectionnavigationhorizontal{\paperwidth}{}{\hskip0pt plus1filll}
\end{beamercolorbox}%
}
}
\usetikzlibrary{shapes}
\setbeamertemplate{section in head/foot}{%
\if\insertsectionheadnumber1
\tikz \fill[frenchblue] circle (1.5pt);
\else
\tikz \fill[frenchblue] circle (1.5pt);
\fi
}
\setbeamertemplate{section in head/foot shaded}{%
\if\insertsectionheadnumber1
\tikz \draw[frenchblue] circle (1.5pt);
\else
\tikz \draw[frenchblue] circle (1.5pt);
\fi
\begin{document}
\end{document}
Now I want it just to be vertically on the right side, or horizontally on the bottom...?
Thanks!
