Paket wie `multicol`, das mehr als 10 Spalten unterstützt

Paket wie `multicol`, das mehr als 10 Spalten unterstützt

Ich versuche, viele Wörter auf eine Seite zu bringen. Wenn ich jedoch verwende \begin{multicols}{11}, erhalte ich die Fehlermeldung „Zu viele Spalten“. Gibt es andere Pakete, die dieselbe Art der automatischen Positionierung wie dieses multicolPaket bieten?

Antwort1

Bildbeschreibung hier eingeben

Sie benötigen eine zusammenhängende Reihe von Kartons, aber derzeit sind es 32.000 und nicht 256, sodass Sie es sich leisten können, die bereits zugeteilten Kartons zu entsorgen und eine neue Charge zuzuteilen.

(eigentlich muss darauf geachtet werden, dass dieser Bereich nicht 255 umfasst, was hier nicht gemacht wird)

\documentclass{article}

\addtolength\textwidth{2cm}
\usepackage{multicol}
\usepackage{etoolbox}
\makeatletter
\patchcmd\multicols{\col@number>10}{\col@number>20}{\typeout{OK}}{\typeout{OOPS}}

% old
\newbox\mult@rightbox
\newbox\mult@grightbox
\newbox\mult@gfirstbox
\newbox\mult@firstbox
\newbox\@tempa\newbox\@tempa
\newbox\@tempa\newbox\@tempa
\newbox\@tempa\newbox\@tempa
\newbox\@tempa\newbox\@tempa
\newbox\@tempa\newbox\@tempa
\newbox\@tempa\newbox\@tempa
\newbox\@tempa\newbox\@tempa
\newbox\@tempa\newbox\@tempa
\newbox\@tempa
%new
\newbox\@tempa\newbox\@tempa
\newbox\@tempa\newbox\@tempa
\newbox\@tempa\newbox\@tempa
\newbox\@tempa\newbox\@tempa
\newbox\@tempa\newbox\@tempa
\newbox\@tempa\newbox\@tempa
\newbox\@tempa\newbox\@tempa
\newbox\@tempa\newbox\@tempa
\newbox\@tempa\newbox\@tempa
\newbox\@tempa\newbox\@tempa
% end new
\let\@tempa\relax
\makeatother
\begin{document}

\begin{multicols}{20}
 \raggedright
a b c d e f g h i j k l m n o p q r s t u v w x y z
a b c d e f g h i j k l m n o p q r s t u v w x y z
a b c d e f g h i j k l m n o p q r s t u v w x y z
a b c d e f g h i j k l m n o p q r s t u v w x y z
a b c d e f g h i j k l m n o p q r s t u v w x y z
a b c d e f g h i j k l m n o p q r s t u v w x y z
a b c d e f g h i j k l m n o p q r s t u v w x y z
a b c d e f g h i j k l m n o p q r s t u v w x y z
a b c d e f g h i j k l m n o p q r s t u v w x y z
a b c d e f g h i j k l m n o p q r s t u v w x y z
a b c d e f g h i j k l m n o p q r s t u v w x y z
a b c d e f g h i j k l m n o p q r s t u v w x y z
a b c d e f g h i j k l m n o p q r s t u v w x y z
a b c d e f g h i j k l m n o p q r s t u v w x y z
a b c d e f g h i j k l m n o p q r s t u v w x y z
a b c d e f g h i j k l m n o p q r s t u v w x y z
a b c d e f g h i j k l m n o p q r s t u v w x y z
a b c d e f g h i j k l m n o p q r s t u v w x y z
\end{multicols}
\end{document}

verwandte Informationen