% \iffalse meta-comment % % Copyright 1994 the LaTeX3 project and the individual authors. % All rights reserved. For further copyright information see the file % legal.txt, and any other copyright indicated in this file. % % This file is part of the LaTeX2e system. % ---------------------------------------- % % This system is distributed in the hope that it will be useful, % but WITHOUT ANY WARRANTY; without even the implied warranty of % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. % % % IMPORTANT NOTICE: % % For error reports in case of UNCHANGED versions see bugs.txt. % % Please do not request updates from us directly. Distribution is % done through Mail-Servers and TeX organizations. % % You are not allowed to change this file. % % You are allowed to distribute this file under the condition that % it is distributed together with all files mentioned in manifest.txt. % % If you receive only some of these files from someone, complain! % % You are NOT ALLOWED to distribute this file alone. You are NOT % ALLOWED to take money for the distribution or use of either this % file or a changed version, except for a nominal charge for copying % etc. % \fi % \iffalse %%% File: euscript.dtx %% Copyright (C) 1990-1994 Frank Mittelbach and Rainer Sch\"opf, %% all rights reserved. %\NeedsTeXFormat{LaTeX2e} %\ProvidesPackage{euscript} % [1994/05/08 v2.1c Standard LaTeX package (Euler Script)] %<*driver> \documentclass{ltxdoc} \usepackage{euscript} \GetFileInfo{euscript.sty} \begin{document} \title{The \texttt{euscript} package\thanks {This file has version number \fileversion, dated \filedate.}\\ for use with \LaTeX2e} \author{Frank Mittelbach \and Rainer Sch\"opf} \date{\filedate} \maketitle \DocInput{euscript.dtx} \end{document} % %\fi % % \CheckSum{4} % % \changes{v2.1c}{1994/05/08}{Changed to new documentation standards.} % \changes{v2.1a}{93/12/12}{Update for LaTeX2e} % % \begin{abstract} % % This package sets up some font shape definition to use the % Euler script symbols in math mode. These fonts are part of the AMS % font package which can be found on many \TeX{} servers. It is also % directly available from the AMS and from \TeX{} user groups. % % The package does not require the \texttt{amstex} package. % % \end{abstract} % % \section{Introduction} % % \DescribeMacro\EuScript % To access the Euler Script alphabet a \meta{math alphabet identifier} % called |\EuScript| is provided. For example, the input % \begin{verbatim} % \[ % \EuScript{A} \neq \mathcal{A} % \] %\end{verbatim} % will produce % \[ % \EuScript{A} \neq \mathcal{A} % \] % % Here is a complete table of the beautiful letters drawn by Hermann % Zapf: % \begin{displaymath} % \newcommand{\E}[1]{\EuScript{#1} &} % \begin{array}{*{10}c} % \E{A} \E{B} \E{C} \E{D} \E{E} \E{F} \E{G} \E{H} \E{I} \\ % \E{J} \E{K} \E{L} \E{M} \E{N} \E{O} \E{P} \E{Q} \E{R} \\ % \E{S} \E{T} \E{U} \E{V} \E{W} \E{X} \E{Y} \E{Z} % \end{array} % \end{displaymath} % % \StopEventually{} % % % \section{The Implementation} % % We have three things to do: 1) identifying the current package, % 2) enlarging the font shape tables and 3) defining the \meta{math % alphabet identifier}. % \begin{macrocode} %<*package> % \end{macrocode} % % The font shapes for the Euler Script medium and bold are defined % in the amsfonts.fdd file which comes with the AMS font package. % We repeat their default definition here for reference only. % \begin{verbatim} % \DeclareFontFamily{U}{eus}{\skewchar\font'60} % \DeclareFontShape{U}{eus}{m}{n}{ % <5> <6> <7> <8> <9> gen * eusm % <10> <10.95> <12> <14.4> <17.28> <20.74> <24.88>eusm10}{} % \DeclareFontShape{U}{eus}{b}{n}{ % <5> <6> <7> <8> <9> gen * eusb % <10> <10.95> <12> <14.4> <17.28> <20.74> <24.88>eusb10}{} %\end{verbatim} % % \begin{macro}{\EuScript} % Now we define the \meta{math alphabet identifier} |\EuScript| % both for the normal and the bold math version % \begin{macrocode} \DeclareMathAlphabet\EuScript{U}{eus}{m}{n} \SetMathAlphabet\EuScript{bold}{U}{eus}{b}{n} % % \end{macrocode} % \end{macro} % % % \Finale % \endinput