Halbe Stunde wird als volle angezeigt
Servus zusammen,
ich verzweifel momentan an meinen Gantt Plan. Ich habe ne Timelime mit Stunden, aber ich benötige nicht immer volle Stunden sondern auch halbe, ich hab x verschiedene Sachen ausprobiert, leider komm ich auf kein Ergebnis. Zusätzlich habe ich noch das Problem das die Labels nicht zentriert angezeigt werden, was wahrscheinlich mit der neuen /ganttbar Zeile zutun hat, gibt es hierfür ne Lösung wie ich 2 Zeilen mit nur einen Label belege? Die erste Zeile dient den "Soll", die zweite dem "Ist".
\documentclass{
scrartcl}
\usepackage[utf8]{inputenc}
\title{test}
\usepackage{graphicx}
\usepackage{pgfgantt}
\begin{document}
\begin{ganttchart}[y unit title=0.4cm,
y unit chart=0.5cm,
vgrid,hgrid,
/pgfgantt/title label font =\small,
/pgfgantt/bar label font=\small,
/pgfgantt/bar /.append style={ align=center, top =0.4},
bar label /.style={top=0.5},
bar/.style={draw,fill=cyan!50},
bar height=0.5,
bar top shift=0,
%bar label /.append style={ align=left},
title top shift=.05
]{1}{35}
\gantttitle{Planungsphase}{9}
\gantttitle{Durchf\"uhrung}{10}
\gantttitle{Test/Analyse}{5}
\gantttitle{Abschlussphase}{11} \\
\gantttitlelist{1,...,35}{1} ]{1}{5}
\gantttitle{Planungsphase}{5}\\
\gantttitlelist{1,...,5}{1} \\
%SOLL 1 STD Vorgespräch
\ganttbar{Vorgespr\"ache}{1}{1}
%IST 1 STD Vorgespräch
\ganttbar[bar height=0.5, bar/.style={draw,fill=red}, bar top shift=0.5]{}{1}{1}\\
%SOLL 2 STD IST-Analyse
\ganttbar{Ist-Analyse}{2}{3}
%IST 2 STD IST-Analyse
\ganttbar[bar height=0.5, bar/.style={draw,fill=red}, bar top shift=0.5]{}{2}{3}\\
%SOLL 1 STD SOLLKONZEPT
\ganttbar{Sollkonzept}{4}{4}
%IST 1 STD SOLLKONZEPT
\ganttbar[bar height=0.5, bar/.style={draw,fill=red}, bar top shift=0.5]{}{4}{4} \\
%SOLL 1 STD SOFTWARE AUSWAHL
\ganttbar{Software Auswahl}{5}{5}
%IST 1 STD SOFTWARE AUSWAHL
\ganttbar[bar height=0.5, bar/.style={draw,fill=red}, bar top shift=0.5]{}{5}{5}\\
%SOLL 1 STD KOSTEN-NUTZEN-ANALYSE
\ganttbar{Kosten-Nutzen-Anaylse}{6}{6}
%IST 1 STD KOSTEN-NUTZEN-ANALYSE
\ganttbar[bar height=0.5, bar/.style={draw,fill=red}, bar top shift=0.5]{}{6}{6}\\
%SOLL 3 STD ERSTELLUNG KONZEPT
\ganttbar{Erstell. Konzept}{7}{9}
%IST 3 STD ERSTELLUNG SICHERHEITSKONZEPT
\ganttbar[bar height=0.5, bar/.style={draw,fill=red}, bar top shift=0.5]{}{7}{9}\\
%SOLL 2 STD INSTALL KONFIG VM
\ganttbar{Install. \& Konfig. VM}{10}{11} %1 STD
%IST 1 STD INSTALL KONFIG VM
\ganttbar[bar height=0.5, bar/.style={draw,fill=red}, bar top shift=0.5]{}{10}{10.5}\\
\end{ganttchart}shift=0.5]{}{1}{1.5}\\
\end{ganttchart}
\end{document}