如何在 LaTeX 中以两列布局显示内容?

发布于 2024-08-05 15:17:51 字数 165 浏览 2 评论 0原文

我正在用 LaTeX 写一篇文章,我想以两列布局显示一些内容。左列是矩阵,右列是项目列表。我尝试过使用表格环境,但它不能按我想要的方式工作。

我的问题是如何在 LeTeX 文档(或类似的东西)中创建一个两列区域,并能够将某些内容放入左列和右列?我不想为整个文档创建两列布局,而只想为其中的一部分创建。

I am writing an article in LaTeX and I would like to display some content in two column layout. In the left column a matrix and in the right column a list of items. I have tried with tabular environment but it does not work as I want.

My question is how to create a two column area in a LeTeX document (or something similar) and be able to put certain content to left and right column? I do not want to create a two-column layout for whole document, only for part of it.

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

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

发布评论

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

评论(2

向地狱狂奔 2024-08-12 15:17:51

加载 multicol 包,例如 \usepackage{multicol}。然后使用:

\begin{multicols}{2}
Column 1
\columnbreak
Column 2
\end{multicols}

如果省略\columnbreak,列将自动平衡。

Load the multicol package, like this \usepackage{multicol}. Then use:

\begin{multicols}{2}
Column 1
\columnbreak
Column 2
\end{multicols}

If you omit the \columnbreak, the columns will balance automatically.

仙女山的月亮 2024-08-12 15:17:51

使用两个迷你页面

\begin{minipage}[position]{width}
  text
 \end{minipage}

Use two minipages.

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