I would ask how to split justified text between two different pages using longtabu. For now, if a single row exceed the space of the page, the entire text will be printed in the next page, leaving a big white space in the previous page.
\documentclass[a4paper, 12pt]{article}
\usepackage{longtable,tabu}
\usepackage{lipsum}
\begin{document}
\begin{longtabu}{X[2,j]X[16,j]}
A & \lipsum[1] \\
B & \lipsum[1] \\
C & \lipsum[1] \\
D & \lipsum[1] \\
\end{longtabu}
\end{document}
You could note how the text of C will be entirely printed on page 2, leaving a large white space on the bottom of page 1.
Thank you all.


i)is given the same space asxii)– David Carlisle Mar 05 '16 at 11:40