[Tex/LaTex] Customizing navigation bar in beamer

beamerpresentationsxetex

I would like to customize the navigation bar (I'm using smoothbars) in beamer but I do not know how to proceed. To be more precise, I would like that all sections that appear on the navigation bar to be highlighted at the titlepage slide.

This is the current situation, all of the topics shown on the navigation bar are not highlighted at the titlepage slide.
enter image description here

I would like that all of the topics shown on the navigation to be highlighted at the titlepage slide. The image below shows the highlight of the section CV when a frame is in this section.
enter image description here

Here follows an MWE of the present situation:

 \documentclass[xetex]{beamer}

% To make the navigation bullets appear
\usepackage{remreset}
\makeatletter
    \@removefromreset{subsection}{section}
\makeatother
\setcounter{subsection}{1}

     \mode<presentation>
    {
      \useoutertheme[subsection=false]{smoothbars}
      \setbeamercovered{transparent}
      \setbeamertemplate{navigation symbols}{} %remove navigation symbols
      \setbeamercovered{invisible} %No transparent layers
    }

    \usepackage{polyglossia}
    \setmainlanguage{french}

    \setbeamerfont{headline}{series=\bfseries}

    \title{Audition}
    \author[John Doe]{\bfseries John Doe}
    \institute{Université}
    \date[19/05/15]{\today}


    \begin{document}
    \frame{ % This is the title slide where I'd like to highlight the sections
            \frametitle{}
            \setbeamertemplate{footline}{} 
            \maketitle  
    }

    \section{CV}
    \frame{}\frame{}\frame{}

    \section{Activités d'enseignement}
    \frame{}\frame{}\frame{}\frame{}

    \section{Activités de recherche}
    \frame{}\frame{}\frame{}\frame{}

    \section{Intégration}
    \frame{}\frame{}\frame{}\frame{}

    \section{Conclusion}
    \frame{}
    \end{document}

Best Answer

Basically the current section is not highlighted, but the other ones are shaded. So if you temporally revoke the shading by setting its value to 100, you get all sections "highlighted".

\documentclass{beamer}
\useoutertheme[subsection=false]{smoothbars}
\setbeamercovered{transparent}
\setbeamertemplate{navigation symbols}{} %remove navigation symbols
\setbeamercovered{invisible} %No transparent layers

\setbeamerfont{headline}{series=\bfseries}

\title{Audition}
\author[John Doe]{\bfseries John Doe}
\institute{Université}
\date[19/05/15]{\today}

\begin{document}
{   
\setbeamertemplate{section in head/foot shaded}[default][100]
\setbeamertemplate{mini frame in other subsection}[default][100]
\frame{ % This is the title slide where I'd like to highlight the sections
  \frametitle{}
  \setbeamertemplate{footline}{} 
  \maketitle  
}
}

\section{CV}
\frame{}\frame{}\frame{}

\section{Activités d'enseignement}
\frame{}\frame{}\frame{}\frame{}

\section{Activités de recherche}
\frame{}\frame{}\frame{}\frame{}

\section{Intégration}
\frame{}\frame{}\frame{}\frame{}

\section{Conclusion}
\frame{}
\end{document}

enter image description here


EDIT:

In order to get filled circles on the titlepage, try this

\documentclass{beamer}
\useoutertheme[subsection=false]{smoothbars}
\setbeamercovered{transparent}
\setbeamertemplate{navigation symbols}{} %remove navigation symbols
\setbeamercovered{invisible} %No transparent layers

\usepackage{remreset}
\makeatletter
\@removefromreset{subsection}{section}
\makeatother
\setcounter{subsection}{1}

\setbeamerfont{headline}{series=\bfseries}

\title{Audition}
\author[John Doe]{\bfseries John Doe}
\institute{Université}
\date[19/05/15]{\today}

\begin{document}
{
\setbeamertemplate{section in head/foot shaded}[default][100]
\setbeamertemplate{mini frame in other subsection}{%
    \begin{pgfpicture}{0pt}{0pt}{0.1cm}{0.1cm}%
        \pgfpathcircle{\pgfpoint{0.05cm}{0.05cm}}{0.05cm}%
        \pgfusepath{fill,stroke}%
    \end{pgfpicture}%
}%
\frame{ % This is the title slide where I'd like to highlight the sections
  \frametitle{}
  \setbeamertemplate{footline}{} 
  \maketitle  
}
}

\section{CV}
\frame{}\frame{}\frame{}

\section{Activités d'enseignement}
\frame{}\frame{}\frame{}\frame{}

\section{Activités de recherche}
\frame{}\frame{}\frame{}\frame{}

\section{Intégration}
\frame{}\frame{}\frame{}\frame{}

\section{Conclusion}
\frame{}
\end{document}

enter image description here