blob: 593d98fc27f5275f71c8d6a3d81ab767e76a314e [file] [log] [blame]
Hao Zhuc1450882018-10-03 17:56:26 -04001# Cross-format Tables in Bookdown
2
3> Note that if kableExtra 0.9.0 doesn't support the EPUB format. If you need to output tables in `.epub`, please upgrade to the dev version or version 1.0 on CRAN once it's released.
4
5## Use the "K-M" approach instead of "M-K"
6Please read this chapter about the "K-M"/"M-K" approaches in `bookdown`:
7https://bookdown.org/yihui/bookdown/new-session.html
8
9To generate cross-format tables with `kableExtra` in a multi-format bookdown project, you will have to use the "M-K" approach by setting `new_session: true` in `_bookdown.yml`. Somehow the "M-K" approach, which merges chapters to a big Rmd and then renders, shares the global environment across formats. For now, I'm not sure if this is a bug or intended behavior. It might be fixable in the future but please don't count on that. By setting `new_session: true`, we force R to use a new session for every chapter for different formats. In this way, tables are generated differently in different formats.
10
11Note that the "M-K" approach is slower than the "K-M" approach. At the same time, packages and data are not shared accross chapter.
12
13```
14# Example _bookdown.yml
15book_filename: "bookdown_example"
16delete_merged_file: true
17new_session: true
18language:
19 ui:
20 chapter_name: "Chapter "
21```
22
23## Prepare Your Tables for Both Formats
24In most cases, functions in `kable` and `kableExtra` use the same API to accomplish the same styling task in HTML and LaTeX. However, you also need some format specific settings so your tables will look good in both formats. Some common items here include the `booktabs` and `longtable` settings in `kable` and the `bootstrap_options` and `latex_options` in `kable_styling`.
25
26Here is an example for a table that will work in both HTML and LaTeX.
27
28```{r}
29library(kableExtra)
Hao Zhub8098052018-10-08 16:57:43 -040030options(kableExtra.html.bsTable = T)
Hao Zhuc1450882018-10-03 17:56:26 -040031mtcars[1:5, 1:5] %>%
32 kable(booktabs = T) %>%
33 kable_styling(
34 latex_options = c("striped"),
35 full_width = F
36 ) %>%
37 column_spec(1, bold = T) %>%
38 add_header_above(c(" ", "Group A" = 2, "Group B" = 3))
39```