使用该软件包,是否有选项可以像在剧本开头那样布置角色阵容dramatist
?如果有,该怎么做?
我写了下面的代码,其中提到了使用字符\Character
\begin{document}
\book*{The Delhi Case}
\Character[Hercule Poirot]{POIROT}{poi}
\Character[Ivan Anderson]{ANDERSON}{and}
\Character[Mr. Jesmond]{JESMOND}{jes}
\scene[.-- Kent]
\StageDir{
\begin{center} Sitting Room in Mr. Jesmond's House\\\poi, \jes
\end{center}
}
\begin{drama}
\poispeaks
And so, we meet again, Mr. Jesmond. It is rather tiring.\\
\jesspeaks
\direct{laughingly} It rather is, isn't it? Now, for the case --\\
因此,我只想列出包括赫尔克里·波洛、杰斯蒙先生和伊万·安德森在内的角色阵容。
答案1
使用\DramPer
。
\documentclass{article}
\usepackage{dramatist}
\begin{document}
\Character[Hercule Poirot]{POIROT}{poi}
\Character[Ivan Anderson]{ANDERSON}{and}
\Character[Mr. Jesmond]{JESMOND}{jes}
\DramPer
\scene[-- Kent]
\StageDir{
\begin{center} Sitting Room in Mr. Jesmond's House\\\poi, \jes
\end{center}
}
\begin{drama}
\poispeaks
And so, we meet again, Mr. Jesmond. It is rather tiring.
\jesspeaks
\direct{laughingly} It rather is, isn't it? Now, for the case --
\end{drama}
\end{document}