该包的文档parrun
声称它可用于显示并行文本。我找不到任何示例代码来展示如何使用它,而且我没能创建一个简单的示例来测试它是如何工作的。我如何让这个包按设计显示并行文本?
答案1
您将一个文本流放置在fframe
(f
可能表示“第一个”)环境中,将另一个文本流放置在sframe
(s
表示“第二个”?)环境中,然后添加\Place
或\Place*
命令来排版环境的内容,一个在另一个之上。
\documentclass{article}
\usepackage{parrun}
\usepackage{lipsum}
\usepackage{xcolor}
\begin{document}
\begin{fframe}
\lipsum[1-2]
\end{fframe}
\begin{sframe}
\color{blue}\lipsum[3-4]
\end{sframe}
\Place*
\end{document}