[texhax] Re: Euler script
Martin Heller
mr_heller at yahoo.dk
Tue Jul 5 20:52:56 CEST 2005
"Patrick Browne" <pj2024 at yahoo.com> skrev i en meddelelse
news:20050704224304.51313.qmail at web50707.mail.yahoo.com...
> Hi i need to know how to write the following (see
> letter types in the attached file ) in Latex , i am
> using WinEdt.
> I do not know how to load packages in latex so if you
> can help please prvoide instructions.
\documentclass{article}
% This is how you load packages
\usepackage{eufrak,array}
% eufrac provides you with the command
% \mathfrak which gives the desired font.
% array extends the tabular environment.
\newcolumntype{C}{>{$}l<{$}}
\newcommand{\mf}[1]{\mathfrak{#1}}
\newcommand\col[9]{%
\mf#1&\mf#2&\mf#3&%
\mf#4&\mf#5&\mf#6&%
\mf#7&\mf#8&\mf#9
}
\begin{document}
\begin{tabular}{*{9}{C}}
\col 123456789\\
\col abcdefghi\\
\col jklmnopqr\\
\col stuvwxyz.\\
\col ABCDEFGHI\\
\col JKLMNOPQR\\
\col STUVWXYZ.
\end{tabular}
\end{document}
More information about the texhax
mailing list