MS Powerpoint has this neat flowchart:
Because everything I ever needed so far could be done with TeX (just not by me), I really do hope that somehow this can be added in a beamer presentation as well and include that in the \frametitle section.
Preferably, the highlight should be movable (from 1st till last element) by some sort of setting. Optimally, the highlight colours would just be the colour scheme (in the example below from red - highlighted to the greyish colour).
MWE:
\documentclass{beamer}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage{svg}
%\usepackage{gensymb}
%\usepackage{siunitx}
%\sisetup {
%locale = DE,
%per-mode = symbol
%}
% THEME AND COLOR SETUP
\usetheme{CambridgeUS}
\usecolortheme[RGB={205,0,0}]{structure}
\setbeamertemplate{items}[default]
\setbeamertemplate{sections/subsections in toc}[square]
\newcommand{\quoted}[1]{
\glqq#1\grqq
}
\date{27. June 2018}
\mode<presentation>{}
\begin{document}
\beamertemplatenavigationsymbolsempty
\title{MS Powerpoint and TeX}
\author{Narusan}
\begin{frame}
\frametitle{Flow Chart}
%FLOWCHART ON TOP HERE
\begin{columns}
\begin{column}{.5\textwidth}
What MS Powerpoint can do:
\begin{itemize}[<+->]
\item Reasonable Slideshows
\item Fancy, but ultimately useless animations
\item Infect your computer with the latest virus
\item Crash when you were just about to save
\end{itemize}
\end{column}
\begin{column}{.5\textwidth}
What TeX can do
\begin{itemize}[<+->]
\item anything
\end{itemize}
\end{column}
\end{columns}
\end{frame}
\end{document}
Actual Output:
Desired Output (without the horrible stretching and without the colour scheme):




