blob: dc9751d4460263856d89fa460ea305b6f8fa6ce9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
%%
%% The LaTeX Companion, 2ed
%%
%% Example 8-3-27 on page 510.
%%
%% 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}
\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}
|