2

R マークダウンを使用して単純なテーブルを持つ Word ドキュメント レポートを生成できましたが、グリッドを持つテーブルを含むレポートを生成できませんでした。

再現可能なコードを作成しようとしました。

---
title: "Unable to create table having grids"
output: word_document
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```

## R Markdown simple table

Tables             Are           Cool
-------------     -----------   -----------
col 3 is         right-aligned  $1600 
col 2 is         centered         $12 
zebra stripes    are neat         $1"


## Table Does Not have grids in it.

+--------------+---------------+---------+
|Tables        | Are           | Cool    |
+==============+===============+=========+
|col 3 is      | right-aligned | $1600   |
+--------------+---------------+---------+
|col 2 is      | centered      |   $12   |
+--------------+---------------+---------+
4

0 に答える 0