Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.26 KB | None | 0 0
  1. documentclass[border=10pt]{standalone}%{article}
  2. %usepackage[margin=1cm]{geometry}
  3. usepackage{pgfgantt}
  4. usepackage{graphicx}
  5. usepackage{xcolor}
  6. %usetikzlibrary{positioning}
  7.  
  8. ganttset{group/.append style={orange},
  9. milestone/.append style={red},
  10. progress label node anchor/.append style={text=red}}
  11.  
  12. begin{document}
  13.  
  14. % begin{figure}
  15. % centering
  16. begin{tikzpicture}
  17. begin{ganttchart}[%Specs
  18. y unit title=0.5cm,
  19. y unit chart=0.7cm,
  20. vgrid,
  21. %hgrid,
  22. title height=1,
  23. % title/.style={fill=none},
  24. title label font=bfseriesfootnotesize,
  25. bar/.style={fill=blue},
  26. bar height=0.7,
  27. % progress label text={},
  28. group right shift=0,
  29. group top shift=0.7,
  30. group height=.3,
  31. canvas/.append style={name=mycanvas},
  32. group peaks width={0.2},
  33. inline]{1}{13}
  34. %labels
  35. gantttitle{Project spring 6}{13}\ % title 1
  36. gantttitle[]{February}{2} % title 2
  37. gantttitle[]{March}{4} % title 2
  38. gantttitle[]{April}{5} % title 2
  39. gantttitle[]{May}{2} % title 2
  40.  
  41. \
  42. gantttitle{P1}{1} % title 3
  43. gantttitle{P2}{1}
  44. gantttitle{P3}{1}
  45. gantttitle{P4}{1}
  46. gantttitle{P5}{1}
  47. gantttitle{P6}{1}
  48. gantttitle{P7}{1}
  49. gantttitle{P8}{1}
  50. gantttitle{P9}{1}
  51. gantttitle{Vacances de Pâques}{1}
  52. gantttitle{P10}{1}
  53. gantttitle{P11}{1}
  54. gantttitle{P12}{1}\
  55.  
  56. %Cahier de charge
  57. ganttgroup[inline=false]{Requierements specification}{1}{2}\
  58. ganttbar[progress=0,inline=false]{Writing requierements specification}{1}{2}\
  59. ganttbar[progress=0,inline=false]{Writing planning}{1}{2}\
  60. ganttmilestone[inline=false]{Rendu documents}{2} \
  61.  
  62. % Analyse
  63. ganttgroup[inline=false]{Analyse}{2}{4}\
  64. ganttbar[progress=10,inline=false]{Analyse}{2}{4}\
  65. ganttmilestone[inline=false]{Rendu analyse}{4} \
  66. %Specification
  67. ganttgroup[inline=false]{Specification}{4}{5}\
  68. ganttbar[progress=0,inline=false]{Specification}{4}{5}\
  69. ganttmilestone[inline=false]{Rendu specification}{5} \
  70.  
  71. ganttgroup[inline=false]{Réalisation}{5}{10}\
  72. ganttbar[progress=0,inline=false]{Specification}{5}{10}\
  73. ganttmilestone[inline=false]{Rendu réalisation}{10} \
  74.  
  75. ganttgroup[inline=false]{Validation}{10}{12}\
  76. ganttbar[progress=0,inline=false]{Specification}{10}{12}\
  77. ganttmilestone[inline=false]{Rendu specification}{12} \
  78.  
  79. ganttgroup[inline=false]{Documentation}{1}{12}\
  80. ganttbar[progress=0,inline=false]{Specification}{1}{12}\
  81. ganttmilestone[inline=false]{Rendu rapport}{12} \
  82. %ganttbar[progress=50,inline=false, bar progress label node/.append style={below left= 10pt and 7pt}]{Task B}{13}{24} \ \
  83. end{ganttchart}
  84. node [left] at ([yshift=-1.3cm]mycanvas.north west) {Weeks};
  85. end{tikzpicture}
  86. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement