将场景切换为咏叹调

将场景切换为咏叹调

我正在使用该dramatist包编写剧本。我想用单词\sceneAria 替换命令中的单词。因此,每次我输入命令时,\scene我都会得到带有数字的单词 Aria。任何帮助都将不胜感激。

答案1

嗯,你没有给出 MWE,所以我不得不猜一下。

在软件包的文档中dramatisttexdoc dramatist在终端/控制台上输入),你可以看到 你可以简单地重命名\scene\scenename

\renewcommand{\scenename}{Aria} % <=====================================

因此下面的代码

\documentclass{article}

\usepackage{dramatist}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}

%% This will print the name of the speaking actor in boldface
\renewcommand{\speaksfont}{\bfseries}
\renewcommand{\scenename}{Aria} % <=====================================


\begin{document}

\Character[Wilheim - a person]{Wilheim}{will} % define characters

\scene[]


\begin{drama}

\willspeaks Vivamus varius tellus et mi pretium elementum iaculis tellus semper. Donec semper iaculis ante, 
convallis convallis arcu laoreet vitae. Aliquam id leo ac eros ultrices rhoncus porta sed ipsum.

\end{drama}

\end{document}

给你:

在此处输入图片描述

相关内容