%%
%% 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}