I'd like my months to be listed as single letters (e.g. J, F, M, A, M, J, J...)
What's the easiest way to do this?
This MWE lists months as MM numbers:
\documentclass[tikz]{standalone}
\usepackage{pgfgantt}
\begin{document}
\begin{ganttchart}[
time slot format=isodate-yearmonth,
time slot unit=month
]{2019-01}{2020-09}
\gantttitlecalendar{year, month=letter} \\
\ganttgroup[]{foo}{2019-07}{2020-03} \\
\ganttgroup[]{bar}{2020-01}{2020-07} \\
\end{ganttchart}
\end{document}

Okfor October in the German version, this would require more efforts and/or other packages likexstring. So if someone wants a multilingual version of this, I'd like to encourage them to ask a separate question.) – Sep 08 '19 at 17:08translatorpackage run. I also came across this thread. If it is really true that you need to provide all these translations yourself, then it is arguably easier to type in 12 times two letters than doing all the fancy stuff. Truncation of the month name is easy:\def\FirstTwoLetters#1#2#3;{#1#2}%. – Sep 09 '19 at 02:36