I am trying to figure out how to split a page into four quadrants (2 rows and 2 columns) to model the time management matrix. I tried using longtable but the second row will only start after the first. What I want to do is to have fixed size rows and columns on each page and contents from particular cell should overflow to corresponding cell on next page w/o resizing the row. I had similar issue with minipage. This is what I have right now,
\documentclass{article}
\usepackage{lipsum}
\usepackage{longtable}
\begin{document}
\begin{longtable}{p{0.5\textwidth}|p{0.4\textwidth}}
\endfirsthead
\endhead
\endfoot
\endlastfoot
\lipsum[2] & \lipsum[1] \\
\hline
\lipsum[3] & \\
\end{longtable}
\end{document}
There is another similar question but there the text from cell 1 flows into cell 2 on same page. This is not what I want.
Edit: An example of what I would like to do is to add content to cell (1,1) on page 1. When the cell is full, the contents should continue to cell (1,1) on page 2 even if other cells on page 1 are empty.