diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/tlc2/8-3-27.ltx')
-rw-r--r-- | Master/texmf-dist/doc/latex/tlc2/8-3-27.ltx | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/tlc2/8-3-27.ltx b/Master/texmf-dist/doc/latex/tlc2/8-3-27.ltx new file mode 100644 index 00000000000..dc9751d4460 --- /dev/null +++ b/Master/texmf-dist/doc/latex/tlc2/8-3-27.ltx @@ -0,0 +1,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} |