%%
%% Doug Aberdeen
%%
%% Allows you to use those cool artistic yinit fonts as drop down
%% capitals in your documents. Particularly designed for the first
%% Letter of a chapter.
%%
%% Usage, at the start of the setance `The quick brown fox...'
%% would be
%% 
%% \drop{T}he quick brown fox...
%%

\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{dropyinit}[2001 Drop down gothic yinit font]
\RequirePackage{wrapfig}


% drop caps
\newcommand{\drop}[1]{%
    \begin{wrapfigure}[5]{l}{11mm}
            {\usefont{U}{yinit}{m}{n} 
                #1
	    }
    \end{wrapfigure}

    ~\\
}
