I'm trying to figure out how to align two five-part links in pgfgantt. At the moment the two links align on the right side, but not on the left and it looks a bit ugly. Anyone that has an suggestion?
Thanks in advance
Anicka
Code: Select all
\documentclass{beamer}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{pgfgantt}
\begin{document}
\begin{frame}
\begin{ganttchart}{12}
\gantttitle{Weeks}{12}\\
\gantttitlelist{1,...,12}{1}\\
\ganttbar{Literature review}{1}{2}\\
\ganttmilestone[inline]{Things ordered}{2}\\
\ganttbar{Writing review}{3}{10}
\ganttlink{elem0}{elem1}
\ganttlink[link mid=0.25]{elem0}{elem2}
\end{ganttchart}
\end{frame}
\end{document}