2

I'm looking for a typesetting to easily quote theatre dialogues. I'm not writing a play, I'm writing a paper on theatre so I need to easily quote dialogues with proper typesetting (characters' names in bold, indentation, etc.). I found packages that create a new document class but I would like to find a package that enables me to use a simple command such as \speech[stagedirection]{who}{what}. Any ideas? Or how to create a document class within \begin{quote}...\end{quote} ?

ksgj1
  • 637
Fred
  • 101
  • 1
  • 8

1 Answers1

8

The "dialogue" package was exactly what I was looking for. Just make sure to call it before "polyglossia" in the preamble otherwise it will cause errors in the compilation.

\usepackage{dialogue}
\usepackage{polyglossia}

Very simple to use:

\begin{dialogue}
\speak{who1} \direct{how} what
\speak{who2} what
\end{dialogue}
Fred
  • 101
  • 1
  • 8