I want to create a timeline which looks like this:
It should be possible to use a specific date or decimaldate as the staring and ending points of the timeline as well as of events. Almost like in the following example using the chronology package:
\documentclass{scrreprt}
\usepackage{chronology}
\begin{document}
\begin{chronology}[1]{\decimaldate{1}{8}{2016}}{\decimaldate{\day}{\month}{\year}}{\textwidth}
\event[\decimaldate{1}{8}{2016}]{\decimaldate{31}{12}{2016}}{}
\event[\decimaldate{1}{8}{2017}]{\decimaldate{31}{12}{2018}}{}
\event[\decimaldate{25}{1}{2020}]{\decimaldate{\day}{\month}{\year}}{}
\end{chronology}
\end{document}
Here the starting and ending points of the events can be exactly specified but not for the timeline itself. I want the timeline to start at August 1st 2016 and end on today's date (May 25th 2020). Also the looks of it is bulky, I want it to be more minimalistic as the following example using the chronosys package (modified version coming from this link: How do I develop a complex time line?):
\documentclass{scrreprt}
\usepackage{chronosys}
\begin{document}
\startchronology[align=left, startyear=2016,stopyear=\year, height=0pt, startdate=false, stopdate=false, dateselevation=0pt, arrow=false, box=true]
%
\chronograduation[event][dateselevation=0pt]{1}
\chronoperiode[color=green, startdate=false, bottomdepth=0pt, topheight=8pt, textdepth=-25pt, stopdate=false]{2016}{2017}{}
\stopchronology
\end{document}
With this timeline using the chronosys package, I can not specify exact dates. It gives me an error when using decimaldate or something like 2016.5.
I have also seen the moderntimeline package which looks like it would solve my problem, but using it without the moderncv documentclass is difficult as seen here, it does not look like the original: How can I use moderntimeline without moderncv?
I would like to stick to scrrepert.





