% TeX MACROS FOR (VISITING) CARDS TYPESETTING, by Vit ZYKA, 1997
% example style file: akela.sty

% Macro \card reads the data file with structure:
%       sphere

\newdimen\vborder \vborder=3mm          % vertical card text skip
\newdimen\hborder \hborder=2mm          % horizontal card text skip
\font\spherefn=csdunh10 at 16pt
\font\otherfn=csdunh10

% ******************************************************** CARD MACRO DEFINITION
\long\def\card#1\enddata{%
        \ifcase\the\style% ---------------------------------------------Design 0
          \vbox to\cardheight{
            \vskip\vborder
            \hbox to\cardwidth{\hskip\hborder\hfil%
                                        {\otherfn Akela}\hskip\hborder}
            \vfil\vskip2ex
            \hbox to\cardwidth{\hskip\hborder\hfil%
                                        {\spherefn#1}\hfil\hskip\hborder}
            \vfil
            \vskip\vborder}%            % The `#' sign is very important !!
        \fi}
