剧本中的额外部分

剧本中的额外部分

我正在使用screenplay包。它运行良好,但目前将场景列为 1、2、3... 等。现在我需要在中间添加一些额外的场景。通常会将其作为场景 0A、1A、1B 等完成。如何创建具有自定义编号的场景(部分)?

示例脚本:

\documentclass{screenplay}

\begin{document}

\section{NEW YORK}
A great scene.

\section{TOKYO}
Even better scene.

\section{WHITE HOUSE}
The best scene.

\end{document}

输出: 输出

我想添加以下部分:

  • 0A ROME, 前1 NEW YORK
  • 1A THE HOTEL, 后1 NEW YORK
  • 1B BASEMENT1A THE HOTEL之间2 TOKYO

答案1

由于screenplay类加载,article您可以使用titlesec它来修改部分。这里我刚刚制作了一个与格式\subsection相同的格式\section,并适当地更改了编号。

\documentclass{screenplay}
\usepackage{titlesec}
\titleformat*{\subsection}{\normalfont\Large}
\renewcommand{\thesubsection}{\thesection\Alph{subsection}}
\begin{document}
\subsection{ROME}
This happens before

\section{NEW YORK}
A great scene.

\subsection{THE HOTEL}
This is a subscene

\subsection{THE BASEMENT}

\section{TOKYO}
Even better scene.

\section{WHITE HOUSE}
The best scene.

\end{document}

代码输出

相关内容