Add more text into In Perpetuum

master
Marvin Johanning 2020-05-30 15:16:13 +02:00
parent 22c75daf23
commit 5512934dcb
2 changed files with 6 additions and 2 deletions

Binary file not shown.

View File

@ -21,10 +21,10 @@
\usepackage{bold-extra}
\usepackage{listings}
\usepackage{xcolor}
%\usepackage{draftwatermark}
% \usepackage{draftwatermark}
\makeindex
% \SetWatermarkText{Draft}
% \SetWatermarkText{Preview}
\newlength\longest
\setlength{\marginparwidth}{0pt}
\setlength{\headheight}{15pt}
@ -796,6 +796,10 @@ for (s := ""; args != nil; args = tl args)
s += " " + hd args;
\end{lstlisting}
The \texttt{for} loop's initial statement is the declaration of the \texttt{s} variable as an empty string; thereafter follows the condition of \texttt{args} not equalling \texttt{nil}; and lastly the command \texttt{args = tl args} is supposed to be executed, videlicet discarding the head of the \texttt{args} variable; this is to be done until \texttt{args} no longer contains any data — id est when its value has become \texttt{nil}.
The successive line then attaches a space — \texttt{" "} — onto the \texttt{s} variable, plucks the head from the \texttt{args} variable and, lastly, adjoins it to the \texttt{s} variable; thereupon the loop is executed again, yet this time, the \texttt{args} variable has had one of its arguments expunged.
\newpage
\thispagestyle{empty}
\mbox{}