Martin A. Hansen <[EMAIL PROTECTED]> writes: > > ok - almost there > > now i just need to adjust the distance between the authors, which is > rediculously large. i am trying this, but in vain. > > \makeatletter > \renewcommand{\and}{% % \begin{tabular} > \end{tabular}% > \hskip 0em [EMAIL PROTECTED] > \begin{tabular}[t]{c}}% % \end{tabular} > \makeatletter > > ideas?
If you say "\hskip ... [EMAIL PROTECTED]" you are allowing TeX to stretch the space as needed. Instead, try this: \def\and{% \end{tabular}% \hskip 0.2em% \begin{tabular}[t]{c}}% and replace 0.2em with whatever you like (even try -4em if you want overlapping authors ;-) ) -- Enrico