I'm formatting a play as a LaTeX book. Is there any particular package the is best for laying out books like this (aside from the LaTeX-book class)?
I'm wondering if there are any examples of vignettes of the dramatist package? I've searched widely to find more examples of working LaTeX for this purpose to no avail. The example that I copied from a TUGboat article (TUGboat, Volume 25 (2004), No. 2) is as follows:
\documentclass[a5paper,showtrims,11pt]{memoir}
\usepackage{dramatist}
%% Layout
\settrimmedsize{18,5cm}{13cm}{*}
\setlength{\trimedge}{\stockwidth}
\addtolength{\trimedge}{-\paperwidth}
\settrims{0pt}{\trimedge}
\settypeblocksize{*}{22pc}{1.71}
\setlrmargins{*}{*}{1.5}
\setulmargins{*}{*}{1}
\setlength{\footskip}{20pt}
\checkandfixthelayout
\ifpdf
\setlength{\pdfpageheight}{\stockheight}
\setlength{\pdfpagewidth}{\stockwidth}
\fi
\renewcommand{\printscenenum}{%
\scenenumfont \thescene}
\setlength{\beforesceneskip}{20pt}
\pagestyle{plain}
\begin{document}
\Character{MAXIMILIAN, COUNT VON MOOR.}{OLD MOOR}{moor}
\Character{FRANCIS, his Sons.}{FRANCIS}{fran}
\scene[. -- Franconia.]
\StageDir{
\begin{center} Apartment in the Castle of
COUNT MOOR.\\\fran, \moor
\end{center}
}
\begin{drama}
\franspeaks
But are you really well, father?
You look so pale.
\moorspeaks Quite well, my son -- what have
you to tell me?
\franspeaks The post is arrived -- a letter
from our correspondent at Leipsic.
\moorspeaks \direct{eagerly}. Any tidings of my son
Charles?
\franspeaks Hem! Hem! -- Why, yes. But I fear
-- I know not -- whether I dare -- your health.
-- Are you really quite well, father?
\end{drama}
\end{document}
However, the \Character definitons do not appear to work as I can only compile successfully when I comment out any character related macros within the {drama} section.
