劇院級聯文字格式

劇院級聯文字格式

我目前正在寫一個關於側面環境的遊戲。
當我用亞歷山大字母書寫時,每行將由 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}

在此輸入影像描述

相關內容