MangoTheCat / rmdshower

R Markdown template for shower
http://mangothecat.github.io/rmdshower/skeleton.html
Other
147 stars 42 forks source link

`kableExtra::kable()` rendering of tables looks weird #53

Open ValeriVoev opened 4 years ago

ValeriVoev commented 4 years ago

I have this simple document:

---
title: "TEST"
author: TEST
output:
  rmdshower::shower_presentation:
    self_contained: false
    katex: true
    ratio: 16x10
---

Slide with R Code and Output

library(dplyr)
head(iris) %>% kableExtra::kable()

but the output of the table looks really weird - for example lines between the rows extend to the whole width of the slide and some of the columns are "glued" to each other (there is no space between them). Is there some incompatibility between shower and kable?

image
rocksms commented 3 years ago

Have similar problems and looking for answers too!