Longtabu no puede reducir el texto al ancho de texto

Longtabu no puede reducir el texto al ancho de texto

Tengo una mesa muy larga con artículos, sus autores y alguna otra información sobre el artículo. Solía longtabu​​​​convertirla en una tabla larga y, como algunos artículos tienen muchos autores, me gustaría asegurarme de que el tabú también se ajuste al ancho de la página. Esta es mi mesa, que sigue el mismo patrón para diez papeles.

\documentclass[a4paper]{article}

\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{tabu}
\usepackage{longtable}


\begin{document}
\begin{longtabu} to \textwidth {ll}
\endfirsthead
\endhead
\endfoot
\endlastfoot

\multicolumn{2}{l}{\textbf{\begin{tabular}[c]{@{}l@{}}A Pushing Approach for Data Synchronization in Cloud to Reduce\\ Energy Consumption in Mobile Devices\end{tabular}}} \\
Authors                                                    & S. A. L. Carvalho, R.N. Lima and A.G. Silva-Filho \cite{Carvalho:PushingApproach}                                                     \\
Platform                                                   & Android                                                                                                       \\
Logging equipment                                          & Adafruit INA219                                                                                               \\
Application type                                           & Networking application                                                                                        \\
\multicolumn{2}{l}{}                                                                                                                                                       \\
\multicolumn{2}{l}{\textbf{An empirical study of the energy consumption of android applications}}                                                                          \\
Authors                                                    & D. Li, S. Hao, J. Gui and W.G.J. Halfond \cite{Ding:EmpiricalStudy}                                                              \\
Platform                                                   & Android                                                                                                       \\
Logging equipment                                          & Monsoon power meter                                                                                           \\
Application type                                           & Networking application                                                                                        \\
\multicolumn{2}{l}{}                                                                                                                                                       \\
\multicolumn{2}{l}{\textbf{Calculating source line level energy information for android applications}}                                                                     \\
Authors                                                    & D. Li, S. Hao, W.G.J. Halfond and R. Govindan \cite{Ding:CalcSourceLine}                                                                \\
Platform                                                   & Android                                                                                                       \\
Logging equipment                                          & Monsoon power meter                                                                                           \\
Application type                                           & Networking application                                                                                        \\
\multicolumn{2}{l}{}                                                                                                                                                       \\
\multicolumn{2}{l}{\textbf{Empowering Developers to Estimate App Energy Consumption}}                                                                                      \\
Authors                                                    & R. Mittal, A. Kansal and R. Chandra \cite{Mittal:EmpoweringDevelopers}                                                                          \\
Platform                                                   & Android                                                                                                       \\
Logging equipment                                          & Monsoon power meter                                                                                           \\
Application type                                           & Networking application                                                                                        \\
\multicolumn{2}{l}{}                                                                                                                                                       \\
\multicolumn{2}{l}{\textbf{Estimating Mobile Application Energy Consumption using Program Analysis}}                                                                       \\
Authors                                                    & S. Hao, D. Li, W.G.J. Halfond and R. Govindan \cite{Ding:ProgramAnalysis}                                                                \\
Platform                                                   & Android                                                                                                       \\
Logging equipment                                          & Atom LEAP                                                                                                          \\
Application type                                           & Various mobile applications                                                                                        \\
\multicolumn{2}{l}{}                                                                                                                                                       \\
\multicolumn{2}{l}{\textbf{Measurement and Analysis of Energy Consumption on Android Smartphones}}                                                                         \\
Authors                                                    & X. Li, X. Zhang, K. Chen and S. Feng \cite{Li:MeasurementAndroid}                                                                         \\
Platform                                                   & Android                                                                                                       \\
Logging equipment                                          & Standard power meter                                                                                          \\
Application type                                           & Various Android components                                                                                        \\
\multicolumn{2}{l}{}                                                                                                                                                       \\
\multicolumn{2}{l}{\textbf{Measuring mobile phone energy consumption for 802.11 wireless networking}}                                                                      \\
Authors                                                    & A. Rice and S. Hay \cite{Rice:MeasuringWireless}                                                                                           \\
Platform                                                   & Android                                                                                                       \\
Logging equipment                                          & National Instruments PCI-MIO-16E-4                                                                            \\
Application type                                           & Networking application                                                                                        \\
\multicolumn{2}{l}{}                                                                       \\
\multicolumn{2}{l}{\textbf{Optimizing Background Email Sync on Smartphones}}                                                                                               \\
Authors                                                    & F. Xu, Y. Liu, T. Moscibroda, R. Chandra, L. Jin, Y. Zhang and Q. Li \cite{Xu:OptimizingEmailSync}                                         \\
Platform                                                   & Android                                                                                                       \\
Logging equipment                                          & Monsoon power meter                                                                                           \\
Application type                                           & Networking application                                                                                        \\
\multicolumn{2}{l}{}                                                                                                                                                       \\
\multicolumn{2}{l}{\textbf{Reducing Power Consumption in Android Applications}}                                                                                            \\
Authors                                                    & A. Singhai, J. Bose and N. Yendeti \cite{Singhai:ReducingPower}                                                                           \\
Platform                                                   & Android                                                                                                       \\
Logging equipment                                          & Monsoon power meter                                                                                           \\
Application type                                           & Graphics application                                                                                        \\
\multicolumn{2}{l}{}                                                                                                                                                       \\
\multicolumn{2}{l}{\textbf{Switching Push and Pull: An Energy Efficient Notification Approach}}                                                                            \\
Authors                                                    & D. Burgstahler, N. Richerzhagen, F. Englert, R. Hans and R. Steinmetz \cite{Burgstahler:SwitchingPushPull} \\
Platform                                                   & Android                                                                                                       \\
Logging equipment                                          & Hitex Power Scale with ACM Probe                                                                              \\
Application type                                           & Networking application      \\
\end{longtabu}

\end{document}

Sin embargo, cuando renderizo esto, algunos de los nombres de los autores están fuera del ancho del texto. Esto realmente me molesta, ya que establecí explícitamente el ancho en \textwidth. ¿Qué me estoy perdiendo?

EDITAR: Cambiar to \textwidtha algo así to 0.2\textwidthtampoco tiene ningún efecto, parece que longtabuse ignora mi ancho.

información relacionada