summaryrefslogtreecommitdiff
path: root/info/examples/tlc2/9-3-27.ltx
diff options
context:
space:
mode:
Diffstat (limited to 'info/examples/tlc2/9-3-27.ltx')
-rw-r--r--info/examples/tlc2/9-3-27.ltx78
1 files changed, 78 insertions, 0 deletions
diff --git a/info/examples/tlc2/9-3-27.ltx b/info/examples/tlc2/9-3-27.ltx
new file mode 100644
index 0000000000..2749c53f8d
--- /dev/null
+++ b/info/examples/tlc2/9-3-27.ltx
@@ -0,0 +1,78 @@
+%%
+%% The LaTeX Companion, 2ed (second printing August 2004)
+%%
+%% Example 9-3-27 on page 560.
+%%
+%% Copyright (C) 2004 Frank Mittelbach, Michel Goossens,
+%% Johannes Braams, David Carlisle, and Chris Rowley
+%%
+%% It may be distributed and/or modified under the conditions
+%% of the LaTeX Project Public License, either version 1.3
+%% of this license or (at your option) any later version.
+%%
+%% See http://www.latex-project.org/lppl.txt for details.
+%%
+
+\documentclass{ttctexa}
+\pagestyle{empty}
+\setcounter{page}{6}
+\setlength\textwidth{351.0pt}
+
+ \typeout{This example requires fonts that are not available^^J%
+ on the TLC2 demo CD}
+\StartShownPreambleCommands
+\usepackage[esperanto,greek,hebrew,bulgarian,russian,english]{babel}
+\usepackage{ifthen}
+
+\renewcommand\rmdefault{cmr} % needed for esperanto (dotless j)
+
+\setlength\parindent{0pt}
+\setlength{\tabcolsep}{3pt}
+\newcommand\GR[1]{{\extrasgreek#1}}
+\newcommand\BU[1]{{\extrasbulgarian#1}}
+\newcommand\HEB[1]{{\extrashebrew#1}}
+\newcommand\RU[1]{{\extrasrussian#1}}
+\newcommand\smskip{\hskip.5pt}
+\makeatletter
+ \gdef\@ctrerr{-} % don't produce counter errors but dash
+\makeatother
+\newcommand\row{\thecount & %
+ \alph{count} & \Alph{count} & %
+ \esper{count} & \Esper{count} & %
+ \GR{\alph{count}} & \GR{\Alph{count}} & %
+ \RU{\asbuk{count}} & \RU{\Asbuk{count}} & %
+ \BU{\alph{count}} & \BU{\Alph{count}} &
+ \HEB{\alph{count}} & \HEB{\Alph{count}} & \HEB{\Alphfinal{count}}\\}
+%
+\newcounter{count}
+\setcounter{count}{1}
+
+\StopShownPreambleCommands
+\begin{document}
+ \centering
+ \small
+ \begin{tabular}{@{}cc@{\smskip}cc@{\smskip}cc@{\smskip}cc@{\smskip}cc@{\smskip}cc@{\smskip}c@{\smskip}c@{}}
+%
+ & \multicolumn{2}{c}{\textit{default}} & %
+ \multicolumn{2}{c}{\textsf{Esperanto}} & %
+ \multicolumn{2}{c}{\textsf{Greek}} & %
+ \multicolumn{2}{c}{\textsf{Russian}} & %
+ \multicolumn{2}{c}{\textsf{Bulgarian}} & %
+ \multicolumn{3}{c}{\textsf{Hebrew}} \\[1pt]
+%
+ Value & %
+ \verb|\alph| & \verb|\Alph| & %
+ \verb|\esper| & \verb|\Esper| & %
+ \verb|\alph| & \verb|\Alph| & %
+ \verb|\asbuk| & \verb|\Asbuk| & %
+ \verb|\alph| & \verb|\Alph| & %
+ \verb|\alph| & \verb|\Alph| & \verb|\Alphfinal| \\[4pt]
+%
+ \whiledo{\value{count}<31}{\row\stepcounter{count}}%
+ \setcounter{count}{40}\row
+ \setcounter{count}{50}\row
+ \setcounter{count}{100}\row
+ \setcounter{count}{250}\row
+ \setcounter{count}{500}\row
+ \end{tabular}
+\end{document}