kableExtra
kableExtra copied to clipboard
Construct Complex Table with knitr::kable() + pipe.
Consider the following reprex to understand the issue, ~~~ --- title: "kableExtra" format: html execute: echo: false --- ## Quarto ```{r} library(kableExtra) tbl1 % kable_classic(full_width = F) %>% kable_styling(font_size =...
**Describe the bug** This is a feature request. I would like to be able to control the text alignment of the individual columns in a table header row by providing...
Hello, I like the approach of `column_spec`, but I don't like the fact you can only specify columns by numbers. If I ever reorder a table, I have to remember...
Please consider allowing standard latex font size specifications in `kable_styling()`, either directly through the `font_size` argument or by a new argument (such as `latex_font_size`). Specifically, I would like to use...
**Describe the bug** I have a table containing strings with some weird combinations of alphanumeric symbols and dollar signs. The table is rendered OK using `knitr::kable()`, but when using `kableExtra::kable()`...
This may be asking too much, but I've recently used add_header_above to add a multicolumn header to a table. I'd like to separate two headers in the same row with...
This appears related to #297. If the width of a column is manually set with `column_spec()` and the contents of the column wrap, then the vertical alignment of items in...
Is it possible to convert kable to `DT::datatable` while preserving the formattings?
Hello, I am experiencing an error with collapse_rows and I have been unable to troubleshoot whats going on behind the scenes. Here is a reprex: ``` r example_df -- Attaching...
Hao, thank you for `kableExtra`. I started to use it just 3 weeks ago and I can't live without it anymore ;-) I encountered a problem using linebreak, whenever an...