我正在尝试使用rmarkdown::render()
呈现R降价文档。其中一个表中的标题最终被拆分为多行,尽管它只包含由单个单词组成的列标题。输出示例如下所示。
有6个单字标签,我希望它们都在同一条线上。
我认为可能是因为标题太宽而且pandoc试图阻止表格完全拆分。如果我删除最后一列,那么只有一个标签“向上移动”。下面我添加了一个Rmd文件,如果我使用rmarkdown::render()
进行渲染,则会生成上面显示的图像。
---
title: trees
date: "`r Sys.Date()`"
output: pdf_document
documentclass: report
---
### My header
The following table is of interest
------------------------------------------------------------------------------------------------------------------------
character factor labelled numeric integer logical
------------------------------------------------------ ----------- ---------- ---------- ---------- ---------- ---------
Identify miscoded missing values $\times$ $\times$ $\times$ $\times$ $\times$
Identify prefixed and suffixed whitespace $\times$ $\times$ $\times$
Identify levels with < 6 obs. $\times$ $\times$
Identify case issues $\times$ $\times$
Identify missclassified numeric or integer variables $\times$ $\times$
Identify outliers $\times$ $\times$
------------------------------------------------------------------------------------------------------------------------