I am working on a four-column document using the multicol package and want to insert a two-column table that spans upon multiple multicols* columns (and multiple pages), doing column and page breaks by itself. I did a mockup in Excel of how I'd like it to look like:
However, I couldn't achieve that with any tabular, longtable, supertabular or xtabular. I think an xtabular could work, but it does a page break every time it reaches the end of a column (see MWE), while I want it to automatically do a column break and fill the whole page before going to a new page.
MWE of what I achieved so far, using the xtab package:
\documentclass[12pt,twoside]{scrbook}
\usepackage{ucs}
\usepackage[utf8x]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{multicol}
\usepackage{xtab}
\begin{document}
\begin{multicols}{4} %Beginning of the four-column environment
\begin{xtabular}{rl} %Beginning of the two-column xtabular
1 & Montag \
2 & Dienstag \
3 & Mittwoch \
4 & Donnerstag \
5 & Freitag \
6 & Samstag \
7 & Sonntag \
8 & Montag \
9 & Dienstag \
10 & Mittwoch \
11 & Donnerstag \
12 & Freitag \
13 & Samstag \
14 & Sonntag \
15 & Montag \
16 & Dienstag \
17 & Mittwoch \
18 & Donnerstag \
19 & Freitag \
20 & Samstag \
21 & Sonntag \
22 & Montag \
23 & Dienstag \
24 & Mittwoch \
25 & Donnerstag \
26 & Freitag \
27 & Samstag \
28 & Sonntag \
29 & Montag \
30 & Dienstag \
31 & Mittwoch \
32 & Donnerstag \
33 & Freitag \
34 & Samstag \
35 & Sonntag \
36 & Montag \
37 & Dienstag \
38 & Mittwoch \
39 & Donnerstag \
40 & Freitag \
41 & Samstag \
42 & Sonntag \
43 & Montag \
44 & Dienstag \
45 & Mittwoch \
46 & Donnerstag \
47 & Freitag \
48 & Samstag \
49 & Sonntag \
50 & Montag \
51 & Dienstag \
52 & Mittwoch \
\end{xtabular}
\end{multicols}
\end{document}
Thanks in advance for any advice!



\usepackage{ucs}\usepackage[utf8x]{inputenc}unless you really need these legacy forms for compatibility with some old document. – David Carlisle May 07 '22 at 13:42