I am currently using \usepackage{enumitem} and a list to make a horizontal time line on a single slide:
\documentclass{beamer}
\usepackage{enumitem}
\begin{document}
\begin{frame}{Plan for 2015/2016}
\begin{itemize}[leftmargin=2cm]
\item[12/2015] First Week: Do abc
\item[] Second Week: do def
\item[01/2016] \,
\item[02/2016] Do foo in bar
\item[03/2016] Do foo in bar
\item[04/2016] Do foo in bar
\item[05/2016] Write something about unicorns
\item[06/2016] Write something about unicorns
\item[07/2016] Write something about unicorns
\item[08/2016] Timelines can look awesome
\item[09/2016] Timelines can look awesome
\end{itemize}
\end{frame}
\end{document}
While this looks ok, but I think it could be nicer:
To make this fit the StackOverflow criteria:
- Is there a package for vertical timelines?
- Can I add a line with dots (12/2015, 02/2016, 05/2016, 08/2016) on the left of the list / between the dates and the text?
