控制 LaTeX 柱流量

发布于 2024-09-02 12:26:00 字数 817 浏览 3 评论 0原文

我想做的事情:我有一个页面,每个页面由两个句子对组成。这些对由整个换行符分隔。我的问题是,当我有奇数对时,第二句话将自动放置在下一列上。

如何使用 LaTeX 制作 multicol 不会忽略的块结构,以将两个句子保持在一起?如果有更好的代码来解决这个问题,或者更好的列实现(尽管我不相信我可以在文档声明中使用 \twocolumn ),请发布它。

我当前的代码:

\documentclass{article}
\usepackage{fullpage}
\usepackage{multicol}

\setlength{\parindent}{0pt}
\setlength{\parskip}{\baselineskip}

\newcommand{\pair}[2]{
 \emph{#1}\\*
 #2

}

\begin{document}

  \begin{multicols}{2}

   \pair{Sentence 1.}{Sentence 2.}
   \pair{Sentence 2 (pair 2).}{Sentence 2 (pair 2).}
   \pair{The last pair, first sentence.}{Last sentence.}

  \end{multicols}

\end{document}

这会生成: http://img541.imageshack.us/img541/3444 /columns.png 。第二对是我试图避免的。

What I'm trying to do: I have a page that consists of pairs of two sentences each. The pairs are separated by a whole line break. My problem is that when I have an odd number of pairs, the second sentence will automatically be placed on the next column.

How can I use LaTeX to make block structures that multicol does not ignore, to keep the two sentences together? If there's better code to solve this problem, or a better column implementation (though I don't believe I can use \twocolumn in the document declaration), please post it.

My current code:

\documentclass{article}
\usepackage{fullpage}
\usepackage{multicol}

\setlength{\parindent}{0pt}
\setlength{\parskip}{\baselineskip}

\newcommand{\pair}[2]{
 \emph{#1}\\*
 #2

}

\begin{document}

  \begin{multicols}{2}

   \pair{Sentence 1.}{Sentence 2.}
   \pair{Sentence 2 (pair 2).}{Sentence 2 (pair 2).}
   \pair{The last pair, first sentence.}{Last sentence.}

  \end{multicols}

\end{document}

This generates: http://img541.imageshack.us/img541/3444/columns.png . The second pair is what I am trying to avoid.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

纵山崖 2024-09-09 12:26:00

试试这个:

\newcommand{\pair}[2]{%
\parbox{\hsize}{\emph{#1}\\*#2}\par}

Try this:

\newcommand{\pair}[2]{%
\parbox{\hsize}{\emph{#1}\\*#2}\par}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文