【发布时间】:2019-04-21 08:18:03
【问题描述】:
我正在寻求如下布局段落: 1. 在引言中,我会在所有列中都有段落。 2.然后沿着两个相反意见的专栏并列。与两列布局不同的是,两列将是平行的,左侧的内容将始终保留在左侧,右侧的内容始终位于右侧,跨越多个页面。即使左列的参数数量较短,右列的参数也不应该浮动到左列。
这是一个 HTML 示例: https://www.biblegateway.com/passage/?search=1+Corinthians+15&version=CCB;KJ21 用于比较不同的翻译。
下面是我尝试达到的效果。
\documentclass{report}
\usepackage[english]{babel}
\usepackage{blindtext}
\begin{document}
\section{Introduction}
Here are the normal paragraph crossing colmuns.
\blindtext
\begin{minipage}[t]{0.5\textwidth}
\section{Argument on the Left}
Because I am on the left, so must I be not right?
\end{minipage}\begin{minipage}[t]{0.5\textwidth}
\section{Argument on the Right}
Because I am on the right, so I must be right!
\blindtext
\end{minipage}
\end{document}
几乎达到了效果,只是两列之间没有空隙。
什么是更好的解决方案?
如何在 org 模式下通过导出为 PDF(通过 LaTex)实现相同的功能?
【问题讨论】: