summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/blindtext
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2009-03-28 00:29:41 +0000
committerKarl Berry <karl@freefriends.org>2009-03-28 00:29:41 +0000
commit87a534fcd4ae6214e3b7f9f91977abfee4582fcf (patch)
tree2bffe7b9e4e72202f85a8c689a7e6a1f38dc6517 /Master/texmf-dist/source/latex/blindtext
parentedce26078de436a63848e74ea297688f82226b5e (diff)
blindtext update (25mar09)
git-svn-id: svn://tug.org/texlive/trunk@12543 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex/blindtext')
-rw-r--r--Master/texmf-dist/source/latex/blindtext/blindtext.dtx441
-rw-r--r--Master/texmf-dist/source/latex/blindtext/blindtext.ins82
2 files changed, 268 insertions, 255 deletions
diff --git a/Master/texmf-dist/source/latex/blindtext/blindtext.dtx b/Master/texmf-dist/source/latex/blindtext/blindtext.dtx
index 30aefacaf3d..18b0a6bae13 100644
--- a/Master/texmf-dist/source/latex/blindtext/blindtext.dtx
+++ b/Master/texmf-dist/source/latex/blindtext/blindtext.dtx
@@ -1,11 +1,11 @@
% ^^A CTAN:macros/latex/contrib/supported/minutes
-\def\fileversion{V1.7}
-\def\filedate{2006/11/21}
+\def\fileversion{V1.8}
+\def\filedate{2009/01/27}
% ^^A For index and changes, run:
% ^^A makeindex -s gglo.ist -o blindtext.gls blindtext.glo
% ^^A makeindex -s gind.ist -o blindtext.ind blindtext.idx
%
-% \CheckSum{547}
+% \CheckSum{545}
%%
%% \CharacterTable
%% {Upper-case \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
@@ -93,7 +93,7 @@
%\verb|\Blindtext| & creates more text & erzeugt mehr Text\\
%\verb|\blindlist{env}| & creates a list & erzeugt eine Liste\\
%\verb|\blindlistoptional|\newline\hspace*{2em}\verb|{env}| & creates a list with \verb|\item[]| & erzeugt eine Liste mit \verb|\item[]|\\
-%\verb|\blindlistlist[level]{env}| & creates cascaded lists & erzeugt geschachtelte Listen\\
+%\verb|\blindlistlist|\newline\hspace*{2em}\verb|[level]{env}| & creates cascaded lists & erzeugt geschachtelte Listen\\
%\verb|\Blindlist{env}| & creates a big list & erzeugt eine gro{\ss}e Liste\\
%\verb|\Blindlistoptional|\newline\hspace*{2em}\verb|{env}| & creates a big list with \verb|\item[]| & erzeugt eine gro{\ss}e Liste mit \verb|\item[]|\\
%\verb|\blinditemize| & creates an itemize list & erzeugt eine itemize-Liste\\
@@ -182,6 +182,8 @@
%
% \selectlanguage{english}
% \section{Implementation/Implementierung}
+% \changes{V1.8}{2009-01-27}{Adding a lot percent to avoid spaces.}
+%
%
% \begin{macrocode}
\NeedsTeXFormat{LaTeX2e}
@@ -235,7 +237,7 @@
\blind@checklanguage
\blind@countxx=1 %
\loop
- \blindtext@text
+ \blindtext@text\
\ifnum\blind@countxx<#1\advance\blind@countxx by 1 %
\repeat
}
@@ -251,14 +253,14 @@
% optional parameter to be used in \verb|\blindtext@Blindtext|.
% \changes{V1.6}{2006-08-02}{Check for defined language}
% \begin{macrocode}
-\newcount\blindtext@numBlindtext%
+\newcount\blindtext@numBlindtext
\newcommand{\Blindtext}[1][\value{Blindtext}]{%
-\blind@checklanguage%
-\blindtext@numBlindtext=#1%
-\blind@Blindtext%
+ \blind@checklanguage
+ \blindtext@numBlindtext=#1\relax
+ \blind@Blindtext
}
% \end{macrocode}
-% \end{macro} %^^ABlindtext
+% \end{macro} %^^A Blindtext
%
% \begin{macro}{\blind@Blindtext}
% This macro continue \verb|\Blindtext| with a second optional parameter.
@@ -266,22 +268,22 @@
% Each paragraph starts and end with a text, which can be defined with
% \verb|\starttext| or \verb|\endtext|.
% \begin{macrocode}
-\newcount\blind@countyy%
+\newcount\blind@countyy
\newcommand{\blind@Blindtext}[1][\value{blindtext}]{%
\blind@countyy=1 %
-\loop%
-{\blindtext@parstart\blindtext[#1]\blindtext@parend\par}%
+ \loop
+ {\blindtext@parstart\blindtext[{#1}]\blindtext@parend\par}%
\ifnum\blind@countyy<\blindtext@numBlindtext\advance\blind@countyy by 1 %
-\repeat%
+ \repeat
}
% \end{macrocode}
-% \end{macro}%^^A{\blind@Blindtext}
+% \end{macro}%^^A {\blind@Blindtext}
%
% \begin{macro}{\parstart}
% \begin{macro}{\parend}
% \begin{macrocode}
-\newcommand{\blindtext@parstart}{} %Text at start of paragraph
-\newcommand{\blindtext@parend}{} %Text at end of paragraph
+\newcommand{\blindtext@parstart}{} % Text at start of paragraph
+\newcommand{\blindtext@parend}{} % Text at end of paragraph
\newcommand{\parstart}[1]{\renewcommand{\blindtext@parstart}{#1}}
\newcommand{\parend}[1]{\renewcommand{\blindtext@parend}{#1}}
% \end{macrocode}
@@ -299,8 +301,8 @@
\newif\ifblind@long\blind@longfalse
\newif\ifblind@optional\blind@optionalfalse
\newcounter{blindlist}
-\newcounter{blindlistlevel}%Up tu X level
-\newcounter{blindlist@level}%internal counter
+\newcounter{blindlistlevel}% Up tu X level
+\newcounter{blindlist@level}% internal counter
\newcount\blind@listitem
% \end{macrocode}
%
@@ -313,11 +315,11 @@
% \changes{V1.6}{2006-08-02}{Check for defined language}
% \begin{macrocode}
%% ^^A-----------------------------------------------------------
-\newcommand{\blindlist}[1]{
-\blind@checklanguage
-\def\blind@listtype{#1}
-\setcounter{blind@levelcount}{1}
-\blind@list
+\newcommand{\blindlist}[1]{%
+ \blind@checklanguage
+ \def\blind@listtype{#1}%
+ \setcounter{blind@levelcount}{1}%
+ \blind@list
}
% \end{macrocode}
% \end{macro}%^^A{\blindlist}
@@ -329,36 +331,36 @@
% counter for the list text.
% \begin{macrocode}
\newcommand{\blind@list}[1][5]{%
-\setcounter{blindlist}{#1}%
-\addtocounter{blindlist@level}{1}%depth of list
+ \setcounter{blindlist}{#1}%
+ \stepcounter{blindlist@level}% depth of list
\blind@listitem=1 %
-\begin{\blind@listtype}%
-\blind@items%
-\end{\blind@listtype}%
-\blind@longfalse%
-\blind@optionalfalse%
+ \begin{\blind@listtype}%
+ \blind@items
+ \end{\blind@listtype}%
+ \blind@longfalse
+ \blind@optionalfalse
}
% \end{macrocode}
-% \end{macro}%^^A{\blind@list}
+% \end{macro}%^^A {\blind@list}
%
% \begin{macro}{\blindlistlist}
% \verb|\blindlistlist[num]{env}[x]| writes cascaded lists up to level num.
% \begin{macrocode}
\newcommand{\blindlistlist}[2][4]{%
-\setcounter{blindlistlevel}{#1}%
-\setcounter{blindlist@level}{0}%deepest reached level
-\setcounter{blind@levelcount}{1}%actual level for printout
-\def\blind@listtype{#2}%
-\blind@list%
+ \setcounter{blindlistlevel}{#1}%
+ \setcounter{blindlist@level}{0}% deepest reached level
+ \setcounter{blind@levelcount}{1}% actual level for printout
+ \def\blind@listtype{#2}%
+ \blind@list
}
% \end{macrocode}
-% \end{macro}%^^A{\blindlistlist}
+% \end{macro}%^^A {\blindlistlist}
% \begin{macro}{\blindlistlistoptional}
% Like \verb|\blindlistlist[num]{env}[x]| but for environment with optional parameters.
% \begin{macrocode}
\newcommand{\blindlistlistoptional}{%
-\blind@optionaltrue%
-\blindlistlist%
+ \blind@optionaltrue
+ \blindlistlist
}
% \end{macrocode}
% \end{macro}%^^A{\blindlistlistoptional}
@@ -381,8 +383,8 @@
% \begin{macro}{\Blindlist}
% \begin{macrocode}
\newcommand{\Blindlist}[1]{%
-\blind@longtrue%
-\blindlist{#1}%
+ \blind@longtrue
+ \blindlist{#1}%
}
% \end{macrocode}
% \end{macro}%^^A{\Blindlist}
@@ -402,8 +404,8 @@
% parameter and start the normal list.
% \begin{macrocode}
\newcommand{\blindlistoptional}[1]{%
-\blind@optionaltrue%
-\blindlist{#1}%
+ \blind@optionaltrue
+ \blindlist{#1}%
}
% \end{macrocode}
% \end{macro}%^^A{\blindlistoptional}
@@ -412,9 +414,9 @@
% Now a big list with optional parameter at \verb|\item|.
% \begin{macrocode}
\newcommand{\Blindlistoptional}[1]{%
-\blind@optionaltrue%
-\blind@longtrue%
-\blindlist{#1}%
+ \blind@optionaltrue
+ \blind@longtrue
+ \blindlist{#1}%
}
% \end{macrocode}
% \end{macro}%^^A{\blindlistoptional}
@@ -437,44 +439,44 @@
% A local counter is defined and the \verb|\item| is written. The
% type of \verb|\item| is influenced by the flags.
% \begin{macrocode}
-\newcommand{\blind@items}{
-\setcounter{blind@listcount}{1}
-\loop
-\ifblind@optional
+\newcommand{\blind@items}{%
+ \setcounter{blind@listcount}{1}%
+ \loop
+ \ifblind@optional
\ifblind@long
- \item[\blindtext@countitem] \blindtext@text
+ \item[\blindtext@countitem] \blindtext@text
\else
- \item[\blindtext@count] \blindtext@item
+ \item[\blindtext@count] \blindtext@item
\fi
\else % \blind@optionalfalse
- \ifblind@long
+ \ifblind@long
\item \blindtext@text
- \else
+ \else
\item \blindtext@countitem
- \fi
+ \fi
\fi % \ifblind@optional
% \end{macrocode}
% Loop for cascaded lists.
% \changes{V1.3}{2003-05-18}{Cascaded lists}
% \begin{macrocode}
{%
- \loop
- \ifnum\value{blindlistlevel}>\value{blindlist@level}
- \addtocounter{blind@levelcount}{1}
- \blind@list[\value{blindlist}]\relax
- \addtocounter{blind@levelcount}{-1}
- \setcounter{blind@listcount}{1}
- \repeat
+ \loop
+ \ifnum\value{blindlistlevel}>\value{blindlist@level}%
+ \stepcounter{blind@levelcount}%
+ \blind@list[\value{blindlist}]\relax
+ \addtocounter{blind@levelcount}{-1}%
+ \setcounter{blind@listcount}{1}%
+ \repeat
}%
-\ifnum\value{blind@listcount}<\value{blindlist}
-\addtocounter{blind@listcount}{1}
+ \ifnum\value{blind@listcount}<\value{blindlist}%
+ \stepcounter{blind@listcount}%
% \end{macrocode}
% Correction for nested values.
% \begin{macrocode}
% \end{macrocode}
% Close the loop
% \begin{macrocode}
-\repeat
+ \repeat
}
% \end{macrocode}
% \end{macro}%^^A{\blind@item}
@@ -485,32 +487,32 @@
% \verb|\section|\ldots, texts and lists (itemize, enumerate,
% description).
% \begin{macrocode}
-\newcommand{\blinddocument}{
-\@ifundefined{chapter}{}{%
- \chapter{\blindtext@heading 0 (chapter)}
- \blindtext%
- }
- \section{\blindtext@heading 1 (section)}
- \blindtext
- \subsection{\blindtext@heading 2 (subsection)}
- \blindtext
+\newcommand{\blinddocument}{%
+ \@ifundefined{chapter}{}{%
+ \chapter{\blindtext@heading 0 (chapter)}%
+ \blindtext
+ }%
+ \section{\blindtext@heading 1 (section)}%
+ \blindtext
+ \subsection{\blindtext@heading 2 (subsection)}%
+ \blindtext
\subsubsection{\blindtext@heading 3 (subsubsection)}%
- \blindtext
- \paragraph{\blindtext@heading 4 (paragraph)}
- \blindtext
-\section{\blindtext@list}
-\subsection{\blindtext@listEx (itemize)}
+ \blindtext
+ \paragraph{\blindtext@heading 4 (paragraph)}%
+ \blindtext
+ \section{\blindtext@list}%
+ \subsection{\blindtext@listEx (itemize)}%
\blinditemize
- \subsubsection{\blindtext@listEx (4*itemize)}
- \blindlistlist{itemize}[2]
-\subsection{\blindtext@listEx (enumerate)}
+ \subsubsection{\blindtext@listEx (4*itemize)}%
+ \blindlistlist{itemize}[2]%
+ \subsection{\blindtext@listEx (enumerate)}%
\blindenumerate
- \subsubsection{\blindtext@listEx (4*enumerate)}
- \blindlistlist{enumerate}[2]
-\subsection{\blindtext@listEx (description)}
+ \subsubsection{\blindtext@listEx (4*enumerate)}%
+ \blindlistlist{enumerate}[2]%
+ \subsection{\blindtext@listEx (description)}%
\blinddescription
- \subsubsection{\blindtext@listEx (4*description)}
- \blindlistlistoptional{description}[2]
+ \subsubsection{\blindtext@listEx (4*description)}%
+ \blindlistlistoptional{description}[2]%
}
% \end{macrocode}
% \end{macro}%^^A{\blinddocument}
@@ -520,35 +522,35 @@
% \verb|\section|\ldots, texts and lists (itemize, enumerate,
% description).
% \begin{macrocode}
-\newcommand{\Blinddocument}{
-\@ifundefined{chapter}{}{%
- \chapter{\blindtext@heading 0 (chapter)}
- \blindtext%
+\newcommand{\Blinddocument}{%
+ \@ifundefined{chapter}{}{%
+ \chapter{\blindtext@heading 0 (chapter)}%
+ \blindtext
}%
- \section{\blindtext@heading 1 (section)}
- \Blindtext
- \subsection{\blindtext@heading 2 (subsection)}
- \Blindtext
- \subsubsection{\blindtext@heading 3 (subsection)}
- \Blindtext
- \paragraph{\blindtext@heading 4 (paragraph)}
- \Blindtext
-\section{\blindtext@list}
-\subsection{\blindtext@listEx (itemize)}
+ \section{\blindtext@heading 1 (section)}%
+ \Blindtext
+ \subsection{\blindtext@heading 2 (subsection)}%
+ \Blindtext
+ \subsubsection{\blindtext@heading 3 (subsection)}%
+ \Blindtext
+ \paragraph{\blindtext@heading 4 (paragraph)}%
+ \Blindtext
+ \section{\blindtext@list}%
+ \subsection{\blindtext@listEx (itemize)}%
\Blinditemize
- \subsubsection{\blindtext@listEx (4*itemize)}
+ \subsubsection{\blindtext@listEx (4*itemize)}%
\blind@longtrue
- \blindlistlist{itemize}[2]
-\subsection{\blindtext@listEx (enumerate)}
+ \blindlistlist{itemize}[2]%
+ \subsection{\blindtext@listEx (enumerate)}%
\Blindenumerate
- \subsubsection{\blindtext@listEx (4*enumerate)}
+ \subsubsection{\blindtext@listEx (4*enumerate)}%
\blind@longtrue
- \blindlistlist{enumerate}[2]
-\subsection{\blindtext@listEx (description)}
+ \blindlistlist{enumerate}[2]%
+ \subsection{\blindtext@listEx (description)}%
\Blinddescription
- \subsubsection{\blindtext@listEx (4*description)}
+ \subsubsection{\blindtext@listEx (4*description)}%
\blind@longtrue
- \blindlistlistoptional{description}[2]
+ \blindlistlistoptional{description}[2]%
}
% \end{macrocode}
% \end{macro}%^^A{\Blinddocument}
@@ -560,12 +562,13 @@
% If babel is not loaded, we need the command \verb|\addto|.
% \begin{macrocode}
%\providecommand{\addto}[2]{#2}
-\@ifundefined{addto}{
-\@ifpackageloaded{babel}{}{
-\PackageWarning{blindtext}{%
-You are not using babel.sty -> Language by random\MessageBreak
-Kein babel.sty verwendet -> Zufallssprache}}
-\newcommand{\addto}[2]{#2}
+\@ifundefined{addto}{%
+ \@ifpackageloaded{babel}{}{%
+ \PackageWarning{blindtext}{%
+ You are not using babel.sty -> Language by random\MessageBreak
+ Kein babel.sty verwendet -> Zufallssprache}%
+ }%
+ \newcommand{\addto}[2]{#2}%
}{}
% \end{macrocode}
% \end{macro}%^^A\addto
@@ -583,7 +586,7 @@ Kein babel.sty verwendet -> Zufallssprache}}
\blind@listitem=0 %
\fi
\global\advance\blind@listitem by 1 %
-}%\blindtext@count}
+}% \blindtext@count
\def\blindtext@item{itemtext}
\def\blindtext@countitem{\blindtext@count\ \blindtext@item}
\def\blindtext@heading{Heading on level\xspace}
@@ -602,18 +605,19 @@ Kein babel.sty verwendet -> Zufallssprache}}
%
% \begin{macrocode}
\addto\extrasenglish{%
-\def\blindtext@text{
-Hello, here is some text without a meaning. This text should show,
-how a printed text will look like at this place. If you read this
-text, you will get no information. Really? Is there no
-information? Is there a difference between this text and some
-nonsense like \frqq Huardest gefburn\flqq? Kjift -- Never mind! A
-blind text like this gives you information about the selected
-font, how the letters are written and the impression of the look.
-This text should contain all letters of the alphabet and it should
-be written in of the original language. There is no need for a
-special contents, but the length of words should match to the
-language.}%\blindtext@text
+ \def\blindtext@text{%
+ Hello, here is some text without a meaning. This text should show,
+ how a printed text will look like at this place. If you read this
+ text, you will get no information. Really? Is there no
+ information? Is there a difference between this text and some
+ nonsense like \frqq Huardest gefburn\flqq? Kjift -- Never mind! A
+ blind text like this gives you information about the selected
+ font, how the letters are written and the impression of the look.
+ This text should contain all letters of the alphabet and it should
+ be written in of the original language. There is no need for a
+ special contents, but the length of words should match to the
+ language.%
+ }% \blindtext@text
}
% \end{macrocode}
%
@@ -621,8 +625,8 @@ language.}%\blindtext@text
\addto\extrasenglish{%
\def\blindtext@count{%
\ifcase\value{blind@listcount}\or
- First\or Second \or Third \or Fourth\or Fivth\or
- Sixth\or Seventh\or Eighth \or Ninth\or Tenth\or
+ First\or Second\or Third\or Fourth\or Fifth\or
+ Sixth\or Seventh\or Eighth\or Ninth\or Tenth\or
Eleventh\or Twelfth%
\else Another%
\fi
@@ -633,9 +637,9 @@ language.}%\blindtext@text
%
% \begin{macrocode}
\addto\extrasenglish{%
- \def\blindtext@heading{Heading on level\xspace}%
- \def\blindtext@list{Lists}%
- \def\blindtext@listEx{Example for list\xspace}%
+ \def\blindtext@heading{Heading on level\xspace}%
+ \def\blindtext@list{Lists}%
+ \def\blindtext@listEx{Example for list\xspace}%
}%\addto\extrasenglish
%
% \end{macrocode}
@@ -652,45 +656,47 @@ language.}%\blindtext@text
%
% \begin{macrocode}
\addto\extrasgerman{%
-\def\blindtext@text{
-Dies hier ist ein Blindtext zum Testen von Textausgaben. Wer
-diesen Text liest, ist selbst schuld. Der Text gibt lediglich den
-Grauwert der Schrift an. Ist das wirklich so? Ist es
-gleich\-g\"ul\-tig ob ich schreibe: \frqq Dies ist ein
-Blindtext\flqq\ oder \frqq Huardest gefburn\flqq? Kjift --
-mitnichten! Ein Blindtext bietet mir wichtige Informationen. An
-ihm messe ich die Lesbarkeit einer Schrift, ihre Anmutung, wie
-harmonisch die Figuren zueinander stehen und pr\"u\-fe, wie breit
-oder schmal sie l\"auft. Ein Blindtext sollte m\"og\-lichst viele
-verschiedene Buchstaben enthalten und in der Originalsprache
-gesetzt sein. Er mu\ss\ keinen Sinn ergeben, sollte aber lesbar
-sein. Fremdsprachige Texte wie \frqq Lorem ipsum\flqq\ dienen
-nicht dem eigentlichen Zweck, da sie eine
-falsche Anmutung vermitteln.}%\blindtext@text
+ \def\blindtext@text{%
+ Dies hier ist ein Blindtext zum Testen von Textausgaben. Wer
+ diesen Text liest, ist selbst schuld. Der Text gibt lediglich den
+ Grauwert der Schrift an. Ist das wirklich so? Ist es
+ gleich\-g\"ul\-tig ob ich schreibe: \frqq Dies ist ein
+ Blindtext\flqq\ oder \frqq Huardest gefburn\flqq? Kjift --
+ mitnichten! Ein Blindtext bietet mir wichtige Informationen. An
+ ihm messe ich die Lesbarkeit einer Schrift, ihre Anmutung, wie
+ harmonisch die Figuren zueinander stehen und pr\"u\-fe, wie breit
+ oder schmal sie l\"auft. Ein Blindtext sollte m\"og\-lichst viele
+ verschiedene Buchstaben enthalten und in der Originalsprache
+ gesetzt sein. Er mu\ss\ keinen Sinn ergeben, sollte aber lesbar
+ sein. Fremdsprachige Texte wie \frqq Lorem ipsum\flqq\ dienen
+ nicht dem eigentlichen Zweck, da sie eine
+ falsche Anmutung vermitteln.%
+ }% \blindtext@text
}
% \end{macrocode}
%
% \begin{macrocode}
\addto\extrasgerman{%
-\def\blindtext@count{
- \ifcase\value{blind@listcount}\or
- Erster\or Zweiter \or Dritter \or Vierter \or F{\"u}nfter \or
- Sechster \or Siebter\or Achter \or Neunter \or Zehnter\or
- Elfter \or Zw{\"o}lfter \or Dreizehnter \or Vierzehnter
- \else
- Noch ein
+ \def\blindtext@count{%
+ \ifcase\value{blind@listcount}\or
+ Erster\or Zweiter\or Dritter\or Vierter\or F{\"u}nfter\or
+ Sechster\or Siebter\or Achter\or Neunter\or Zehnter\or
+ Elfter\or Zw{\"o}lfter\or Dreizehnter\or Vierzehnter%
+ \else
+ Noch ein%
\fi
-}%\blindtext@count
-\def\blindtext@item{Listenpunkt, Stufe~\arabic{blind@levelcount}}%
+ }% \blindtext@count
+ \def\blindtext@item{Listenpunkt, Stufe~\arabic{blind@levelcount}}%
}%\addto\extrasgerman
% \end{macrocode}
%
% \begin{macrocode}
\addto\extrasgerman{%
- \def\blindtext@heading{{\"U}berschrift auf Ebene\xspace}%
- \def\blindtext@list{Listen}%
- \def\blindtext@listEx{Beispiel einer Liste\xspace}%
-}%\addto\extrasgerman
+ \def\blindtext@heading{{\"U}berschrift auf Ebene\xspace}%
+ \def\blindtext@list{Listen}%
+ \def\blindtext@listEx{Beispiel einer Liste\xspace}%
+}% \addto\extrasgerman
+% \end{macrocode}
%
% If the packet \Lpack{german} is loaded, select the language.
% \begin{macrocode}
@@ -707,43 +713,45 @@ falsche Anmutung vermitteln.}%\blindtext@text
%
% \begin{macrocode}
\addto\extrasngerman{%
-\def\blindtext@text{
-Dies hier ist ein Blindtext zum Testen von Textausgaben. Wer
-diesen Text liest, ist selbst schuld. Der Text gibt lediglich den
-Grauwert der Schrift an. Ist das wirklich so? Ist es
-gleich\-g\"ul\-tig ob ich schreibe: \frqq Dies ist ein
-Blindtext\flqq\ oder \frqq Huardest gefburn\flqq? Kjift --
-mitnichten! Ein Blindtext bietet mir wichtige Informationen. An
-ihm messe ich die Lesbarkeit einer Schrift, ihre Anmutung, wie
-harmonisch die Figuren zueinander stehen und pr\"u\-fe, wie breit
-oder schmal sie l\"auft. Ein Blindtext sollte m\"og\-lichst viele
-verschiedene Buchstaben enthalten und in der Originalsprache
-gesetzt sein. Er mu\ss\ keinen Sinn ergeben, sollte aber lesbar
-sein. Fremdsprachige Texte wie \frqq Lorem ipsum\flqq\ dienen
-nicht dem eigentlichen Zweck, da sie eine
-falsche Anmutung vermitteln.}%\blindtext@text
+ \def\blindtext@text{%
+ Dies hier ist ein Blindtext zum Testen von Textausgaben. Wer
+ diesen Text liest, ist selbst schuld. Der Text gibt lediglich den
+ Grauwert der Schrift an. Ist das wirklich so? Ist es
+ gleich\-g\"ul\-tig ob ich schreibe: \frqq Dies ist ein
+ Blindtext\flqq\ oder \frqq Huardest gefburn\flqq? Kjift --
+ mitnichten! Ein Blindtext bietet mir wichtige Informationen. An
+ ihm messe ich die Lesbarkeit einer Schrift, ihre Anmutung, wie
+ harmonisch die Figuren zueinander stehen und pr\"u\-fe, wie breit
+ oder schmal sie l\"auft. Ein Blindtext sollte m\"og\-lichst viele
+ verschiedene Buchstaben enthalten und in der Originalsprache
+ gesetzt sein. Er mu\ss\ keinen Sinn ergeben, sollte aber lesbar
+ sein. Fremdsprachige Texte wie \frqq Lorem ipsum\flqq\ dienen
+ nicht dem eigentlichen Zweck, da sie eine
+ falsche Anmutung vermitteln.%
+ }% \blindtext@text
}
% \end{macrocode}
%
% \begin{macrocode}
\addto\extrasngerman{%
-\def\blindtext@count{
+ \def\blindtext@count{%
\ifcase\value{blind@listcount}\or
- Erster\or Zweiter \or Dritter \or Vierter \or F{\"u}nfter \or
- Sechster \or Siebter\or Achter \or Neunter \or Zehnter\or
- Elfter \or Zw{\"o}lfter \or Dreizehnter \or Vierzehnter\else
+ Erster\or Zweiter\or Dritter\or Vierter\or F{\"u}nfter\or
+ Sechster \or Siebter\or Achter\or Neunter\or Zehnter\or
+ Elfter \or Zw{\"o}lfter\or Dreizehnter\or Vierzehnter\else
Noch ein\fi
-}%\blindtext@count
-\def\blindtext@item{Listenpunkt, Stufe~\arabic{blind@levelcount}}%
+ }% \blindtext@count
+ \def\blindtext@item{Listenpunkt, Stufe~\arabic{blind@levelcount}}%
}%\addto\extrasgerman
% \end{macrocode}
%
% \begin{macrocode}
\addto\extrasngerman{%
- \def\blindtext@heading{{\"U}berschrift auf Ebene\xspace}%
- \def\blindtext@list{Listen}%
- \def\blindtext@listEx{Beispiel einer Liste\xspace}%
+ \def\blindtext@heading{{\"U}berschrift auf Ebene\xspace}%
+ \def\blindtext@list{Listen}%
+ \def\blindtext@listEx{Beispiel einer Liste\xspace}%
}%\addto\extrasngerman
+% \end{macrocode}
%
% If the packet \Lpack{ngerman} is loaded, select the language.
% \begin{macrocode}
@@ -761,20 +769,21 @@ falsche Anmutung vermitteln.}%\blindtext@text
% I don't speak latin, but I think the classic "Lorem ipsum" should be available.
% \begin{macrocode}
\addto\extraslatin{%
-\def\blindtext@text{
-Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Etiam
-lobortis facilisis sem. Nullam nec mi et neque pharetra
-sollicitudin. Praesent imperdiet mi nec ante. Donec ullamcorper,
-felis non sodales commodo, lectus velit ultrices augue, a
-dignissim nibh lectus placerat pede. Vivamus nunc nunc, molestie
-ut, ultricies vel, semper in, velit. Ut porttitor. Praesent in
-sapien. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
-Duis fringilla tristique neque. Sed interdum libero ut metus.
-Pellentesque placerat. Nam rutrum augue a leo. Morbi sed elit sit
-amet ante lobortis sollicitudin. Praesent blandit blandit mauris.
-Praesent lectus tellus, aliquet aliquam, luctus a, egestas a,
-turpis. Mauris lacinia lorem sit amet ipsum. Nunc quis urna dictum
-turpis accumsan semper.}%\blindtext@text
+ \def\blindtext@text{%
+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Etiam
+ lobortis facilisis sem. Nullam nec mi et neque pharetra
+ sollicitudin. Praesent imperdiet mi nec ante. Donec ullamcorper,
+ felis non sodales commodo, lectus velit ultrices augue, a
+ dignissim nibh lectus placerat pede. Vivamus nunc nunc, molestie
+ ut, ultricies vel, semper in, velit. Ut porttitor. Praesent in
+ sapien. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
+ Duis fringilla tristique neque. Sed interdum libero ut metus.
+ Pellentesque placerat. Nam rutrum augue a leo. Morbi sed elit sit
+ amet ante lobortis sollicitudin. Praesent blandit blandit mauris.
+ Praesent lectus tellus, aliquet aliquam, luctus a, egestas a,
+ turpis. Mauris lacinia lorem sit amet ipsum. Nunc quis urna dictum
+ turpis accumsan semper.%
+ }%\blindtext@text
}
% \end{macrocode}
%
@@ -784,24 +793,24 @@ turpis accumsan semper.}%\blindtext@text
%
% \begin{macrocode}
\addto\extraslatin{%
-\def\blindtext@count{
- \ifcase\value{blind@listcount}\or
- Primus\or Duo\or Tres\or Quattuor\or Quinque\or
- Sex\or Septem\or Octo\or Novem\or Decem\or
- Undecim\or Duodecim
- \else
- Nova
- \fi
-}%\blindtext@count
-\def\blindtext@item{, altum~\arabic{blind@levelcount}}%
-}%\addto\extrasgerman
+ \def\blindtext@count{%
+ \ifcase\value{blind@listcount}\or
+ Primus\or Duo\or Tres\or Quattuor\or Quinque\or
+ Sex\or Septem\or Octo\or Novem\or Decem\or
+ Undecim\or Duodecim%
+ \else
+ Nova%
+ \fi
+ }% \blindtext@count
+ \def\blindtext@item{, altum~\arabic{blind@levelcount}}%
+}%\addto\extraslatin
% \end{macrocode}
%
% \begin{macrocode}
\addto\extraslatin{%
- \def\blindtext@heading{Sectio\xspace}%
- \def\blindtext@list{Caudex}%
- \def\blindtext@listEx{Exemplum caudex\xspace}%
+ \def\blindtext@heading{Sectio\xspace}%
+ \def\blindtext@list{Caudex}%
+ \def\blindtext@listEx{Exemplum caudex\xspace}%
}%\addto\extraslatin
% \end{macrocode}
%
@@ -813,6 +822,10 @@ turpis accumsan semper.}%\blindtext@text
% \end{macrocode}
% \end{macro}%^^A\alotoftext
%
+%
+% \section{Thanks}
+% Thanks to Heiko Oberdiek and Arno Trautmann for corrections (Version 1.8)
+%
% \Finale
% \PrintIndex
% \end{document}
diff --git a/Master/texmf-dist/source/latex/blindtext/blindtext.ins b/Master/texmf-dist/source/latex/blindtext/blindtext.ins
index 1921638325f..c84505e6b70 100644
--- a/Master/texmf-dist/source/latex/blindtext/blindtext.ins
+++ b/Master/texmf-dist/source/latex/blindtext/blindtext.ins
@@ -1,41 +1,41 @@
-\def\batchfile{blindtext.ins}
-\input docstrip.tex
-
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-\preamble
-----------------------------------------------------------------------
-The original file is loadable from CTAN on:
-tex-archive/latex/contrib/blindtext
-
-Name of contribution: blindtext
-Name and email: Knut Lickert <knut@lickert.net>
-Location on CTAN: tex-archive/macros/latex/contrib/blindtext
-Summary description: Package for writing text
-License type: Free
-
-Announcement text:
-blindtext.sty:
- Style to create text.
- Can be used to create examples with a lot text to become a feeling
- for the look of classes, packages...
-
- There are macros to create dummy text, dummy lists and
- dummy documents with sections, text and lists.
-
-For more information visit
- http://tex.lickert.net/packages/blindtext/index.html
-----------------------------------------------------------------------
-\endpreamble
-
-\generateFile{blindtext.sty}{f}{\from{blindtext.dtx}{package}}
-
-\Msg{***************************************************************}
-\Msg{*}
-\Msg{* To finish the installation you have to copy the files }
-\Msg{*}
-\Msg{*\space\space *.sty into a directory searched by TeX}
-\Msg{*}
-\Msg{***************************************************************}
-
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-\endinput
+\def\batchfile{blindtext.ins}
+\input docstrip.tex
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\preamble
+----------------------------------------------------------------------
+The original file is loadable from CTAN on:
+tex-archive/latex/contrib/blindtext
+
+Name of contribution: blindtext
+Name and email: Knut Lickert <knut@lickert.net>
+Location on CTAN: tex-archive/macros/latex/contrib/blindtext
+Summary description: Package for writing text
+License type: Free
+
+Announcement text:
+blindtext.sty:
+ Style to create text.
+ Can be used to create examples with a lot text to become a feeling
+ for the look of classes, packages...
+
+ There are macros to create dummy text, dummy lists and
+ dummy documents with sections, text and lists.
+
+For more information visit
+ http://tex.lickert.net/packages/blindtext/index.html
+----------------------------------------------------------------------
+\endpreamble
+
+\generateFile{blindtext.sty}{f}{\from{blindtext.dtx}{package}}
+
+\Msg{***************************************************************}
+\Msg{*}
+\Msg{* To finish the installation you have to copy the files }
+\Msg{*}
+\Msg{*\space\space *.sty into a directory searched by TeX}
+\Msg{*}
+\Msg{***************************************************************}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\endinput