剧院级联文本格式

剧院级联文本格式

我目前正在写一部以 Sides 环境为背景的戏剧。
由于我用亚历山大体书写,所以每行应正好包含 12 英尺。
当几个角色说话时,缩进是必要的,以表明我不是在完成一节诗,而是将其完成到 12 英尺。我目前使用的是固定缩进。
说话者在此处以节为单位显示。

\section*{First Guard}
You are not welcome here!
\section*{First Beggar}
\hspace{25mm}Let me in! 
\section*{Second Beggar}
\hspace{50mm}Let me in!

结果如下:

固定缩进

我该如何格式化我的文本,以便每个回复都与前一个回复保持连续性?就像一个句子跨越几行一样?

这就是我所寻找的:

层叠亚历山大

答案1

您可以使用\phantom

\documentclass{article}
\begin{document}
\section*{First Guard}
You are not welcome here!
\section*{First Beggar}
\phantom{You are not welcome here! }Let me in! 
\section*{Second Beggar}
\phantom{You are not welcome here! Let me in! }Let me in!
\end{document}

在此处输入图片描述

相关内容