Quero que quase todos os gráficos de Gantt caibamautomaticamenteà largura do texto de uma página. A grande palavra nessa questão éautomático. E é isso que difere de outras questões como essa.
Olargura do textoe acontagem de intervalos de tempono gráfico não são especificados. A solução deve ser flexível o suficiente para cuidar disso.
Talvez haja uma solução paracalcular x unit
? O MWE abaixo possui 122 timeslots. Então eu definiria x unit
como \textwidth divided by 122
. Existe uma maneira de fazer isso?
\documentclass{article}
\usepackage[showframe]{geometry} % show page borders
\usepackage{pgfgantt}
\begin{document}
\noindent
\begin{ganttchart}
[
x unit=1.23mm, % timeslot width
time slot format=isodate % Datumsformat
]
{2017-04-01}{2017-07-31} % from-to (122 days)
\gantttitle{Gantt-Chart with 122 timeslots}{122}\\
\ganttbar{Short}{2017-05-01}{2017-06-01}\\
\ganttbar{Long Long}{2017-05-25}{2017-06-04}\\
\end{ganttchart}
\end{document}
Responder1
Após discussão no chat, esta é uma adaptação da resposta de Alan que implementa a sintaxe que ele estava tentando realizar.
% addaswyd o ateb Alan Munn: https://tex.stackexchange.com/questions/364944/expand-a-gantt-chart-automatically-to-textwidth-of-a-page/364969#364969 a chwestiwn buhtz: https://tex.stackexchange.com/questions/364944/expand-a-gantt-chart-automatically-to-textwidth-of-a-page
\documentclass[a4paper]{article}
\usepackage[showframe]{geometry} % show page borders
\parindent=0pt
\usepackage{pgfgantt}
\makeatletter
\tikzset{%
/pgfgantt/time slots/.code={%
\tikzset{%
/pgfgantt/time slots/.cd,
#1,
/pgfgantt/.cd,
}%
},
/pgfgantt/time slots/.search also={/pgfgantt},
/pgfgantt/time slots/.cd,
width/.store in=\ts@width,
width=\textwidth,
slots/.store in=\totaltimeslots,
slots=20,
label width/.store in=\ts@labelwidth,
label width=25mm,
calc x unit/.code n args=3{%
\pgfmathsetmacro\ts@xunit{(#1-#2-0.6667em-2*\pgflinewidth)/#3}%
\tikzset{%
/pgfgantt/x unit=\ts@xunit pt,
}%
},
widest/.code={%
\pgfmathsetmacro\ts@wdlabel{width("#1")}%
\tikzset{/pgfgantt/time slots/label width=\ts@wdlabel pt}%
},
calc x unit aux width/.style={/pgfgantt/time slots/calc x unit={#1}{\ts@labelwidth}{\totaltimeslots}},
calc x unit aux label width/.style={/pgfgantt/time slots/calc x unit={\ts@width}{#1}{\totaltimeslots}},
calc x unit aux slots/.style={/pgfgantt/time slots/calc x unit={\ts@width}{\ts@labelwidth}{#1}},
width/.forward to=/pgfgantt/time slots/calc x unit aux width,
slots/.forward to=/pgfgantt/time slots/calc x unit aux slots,
label width/.forward to=/pgfgantt/time slots/calc x unit aux label width,
}
\makeatother
\begin{document}
\begin{ganttchart}
[
time slots={slots=122, widest=Long Long},
time slot format=isodate,
]
{2017-04-01}{2017-07-31} % from-to (122 days)
\gantttitle{Gantt-Chart with 122 timeslots}{\totaltimeslots}\\
\ganttbar{Short}{2017-05-01}{2017-06-01}\\
\ganttbar{Long Long}{2017-05-25}{2017-06-04}\\
\end{ganttchart}
\begin{ganttchart}
[
time slots/slots=15,
time slots/widest=Foo,
time slots/width=.9\linewidth,
time slot format=isodate,
]
{2017-04-01}{2017-04-15} % from-to (122 days)
\gantttitle{Gantt-Chart with 15 timeslots}{15}\\
\ganttbar{Foo}{2017-05-25}{2017-06-04}
\end{ganttchart}
\end{document}
Responder2
Use o calc
pacote para definir o comprimento conforme necessário. Como o número de intervalos de tempo precisa ser definido manualmente no \ganttitle
comando, criei um ganttchart
estilo timeslots
que toma como argumentos o número de intervalos do gráfico e o texto do \gantttitle
rótulo mais longo (separado por vírgula) e depois usa isso para calcular a largura. Também define o valor de uma macro \timeslots
que pode então ser usada no \gantttitle
comando.
Adicionei o código como um ganttchart
estilo, para que ele possa ser especificado sem sua própria macro como na versão anterior (veja o histórico de edições para detalhes). Também adicionei um comprimento para a largura à qual você deseja que o dimensionamento automático seja relativo. Para o seu exemplo específico, está definido como \textwidth
, mas isso permite que você defina a largura que desejar.
Uso:[ ..., timeslots={<number>,<text of longest label>}, ... ]
\usepackage[]{geometry} % show page borders
\parindent=0pt
\usepackage{pgfgantt}
\usepackage{calc}
\newlength{\myunitx}
\newlength{\autosizewidth}
\setlength{\autosizewidth}{\textwidth} % this allows you to change the value for autosizing
\newcommand*{\timeslots}{}
\ganttset{
timeslots/.code args={#1,#2}{\setlength{\myunitx}{(\autosizewidth-\widthof{#2}-1em)/#1}
\renewcommand{\timeslots}{#1}\pgfkeys{pgfgantt/x unit=\myunitx}}
}
\begin{document}
\begin{ganttchart}
[
timeslots={122,Long Long}, % timeslots
time slot format=isodate % Datumsformat
]
{2017-04-01}{2017-07-31} % from-to (122 days)
\gantttitle{Gantt-Chart with 122 timeslots}{\timeslots}\\
\ganttbar{Short}{2017-05-01}{2017-06-01}\\
\ganttbar{Long Long}{2017-05-25}{2017-06-04}\\
\end{ganttchart}
\begin{ganttchart}
[
timeslots={15,Foo}, % timeslots
time slot format=isodate % Datumsformat
]
{2017-04-01}{2017-04-15} % from-to (122 days)
\gantttitle{Gantt-Chart with 15 timeslots}{15}\\
\ganttbar{Foo}{2017-05-25}{2017-06-04}
\end{ganttchart}
\end{document}