我想写一个这样的剧本: http://www.dailyscript.com/scripts/sunset_bld_3_21_49.html
我的需求是:
有些页面只有一列
有些页面有两列
有些页面如下:
more lines spanning all the page width
a first column a second column
more lines spanning all the page width
有没有适合我需要的套餐?
答案1
下面是一个使用的示例multicol
,包括环境的可选参数multicols
。
\documentclass{article}
\usepackage{multicol}
\usepackage{lipsum}
\begin{document}
\section{foo}
\lipsum[1]
\begin{multicols}{2}[%
\section{A long section title spanning both columns}%
]
\lipsum[1]
\end{multicols}
\section{bar}
\lipsum[1]
\end{document}
答案2
我建议multicol
包裹
请注意,如果你使用screenplay
,你需要重新定义一些长度multicols
,例如
\begin{multicols}{2}
% REDEFINITIONS
\setlength{\dialwidth}{2.0in}
\setlength{\dialgutter}{0.1in}
\renewcommand*{\dialtab}{\hspace*{0.1in}}
\begin{dialogue}{Bob}
That means that someone
sabotaged the unit and killed the
President! Was it one of us?
\end{dialogue}
\begin{dialogue}{Brown}
Who else is mad but us, Condi\ldots
\paren{beat}
and Bliar?
\end{dialogue}
Bob buries his head in his hands.
\intslug{Atlantis -- somewhere ANyway}
JOHN and MARK are at adjacent consoles. FRED is with them. TOM
is at another console slightly further away.
\begin{dialogue}{John}
The planetoid seems to have a thin crust
covering a nickel-iron core. Could have
been an Earth-like planet at one time.
\end{dialogue}
\begin{dialogue}{Mark}
We're coming up on the radio source now.
\end{dialogue}
Brown walks in and goes to a console.
He has a PARROT on his shoulder.
The Parrot has an air of quiet insouciance.
\end{multicols}
ETC...