具有两个相等列的Rmd

oxosxuxt  于 2023-03-05  发布在  其他
关注(0)|答案(1)|浏览(122)

我正在处理一个.Rmd文件,如下所示:

---
title: 'Institute'
subtitle: 'Math test'
author: 'author'
output: pdf_document
header-includes:
- \usepackage{tabularx}

---
Name: _________________________  Class:_____   date: __________

# Solve these excercises

1. $$\int{\frac{x}{x+6}}dx$$\
\hrule\
2. $$\int{\frac{1}{x^2-9}}dx$$\
\hrule\
3. $$\int{\frac{x^2+4}{x+4}}dx$$\
\hrule\
5. $$\int{x\cdot arctan(x)}dx$$\
\hrule\
6. $$\int{(x^2+1)e^x}dx$$\
\hrule\
7. $$\int{\frac{x-7}{x^2+x-6}}dx$$

<!-- Some Table with tabularx for points -->

现在如果我把它编织成PDF,它会打印一个节选列表,一个在另一个下面,表格在页面底部。
我想编织它使用两列,我在网上搜索,但我找到的解决方案不会为我工作,因为他们会安排在两列的节选,填补第一个,然后第二个。我希望列是同样充满节选。(最好的解决方案是不除以节选的数量,但与他们在页面中所占的空间)。
我想知道这是否可以用几行代码来完成,因为我正在创建一个网页,该网页将我想要填充测试的摘录作为输入,并创建.rmd文件。

mqkwyuun

mqkwyuun1#

您可以使用multicol软件包:

---
title: 'Institute'
subtitle: 'Math test'
author: 'author'
output: pdf_document
header-includes:
  - \usepackage{tabularx}
  - \usepackage{multicol}
---
Name: _________________________  Class:_____   date: __________

# Solve these excercises

```{=latex}
  \begin{multicols}{2}
  1. $$\int{\frac{x}{x+6}}dx$$
    \hrule
  2. $$\int{\frac{1}{x^2-9}}dx$$
    \hrule
  3. $$\int{\frac{x^2+4}{x+4}}dx$$
    \hrule
  4. $$\int{x\cdot arctan(x)}dx$$
    \hrule
  5. $$\int{(x^2+1)e^x}dx$$
    \hrule
  6. $$\int{\frac{x-7}{x^2+x-6}}dx$$
\end{multicols}

![](https://i.stack.imgur.com/jx37L.png)

相关问题