Christophe Dervieux

Results 362 issues of Christophe Dervieux

This comes from : https://github.com/rstudio/rmarkdown/issues/2068 * Use the `label` argument in `knitr::kable` ````markdown --- title: test output: bookdown::html_document2 --- # Several versions of the table ```{r mtCarsTables, echo=FALSE, results='asis'} list

It seems tabset feature was enough to provide FR asked in: https://github.com/rstudio/rmarkdown/issues/2053 We should add it as examples.

This is a great extension package for **bookdown**: https://github.com/pzhaonet/bookdownplus

Regarding this part https://bookdown.org/yihui/rmarkdown-cookbook/raw-content.html One can use `knitr::raw_block` and more specific `raw_html` or `raw_latex` to use that in R code chunk or with inline code in order to build the...

See https://github.com/yihui/knitr/issues/1704#issuecomment-482591184 and maybe there will be function to help

Different manner to set them and which priority they have Examples of case where this is not clear: * A README.Rmd in a bookdown project: https://community.rstudio.com/t/readme-rmd-in-a-bookdown-repo/93191/8

Bootstrap has some predifined classes like ```css .hidden { display: none !important; } ``` that can be used directly using Fenced divs Example based on #310 ````markdown --- title: "Untitled"...

Related to this https://github.com/rstudio/rmarkdown/issues/1617 ````markdown --- title: "Untitled" date: "`r Sys.Date()`" output: html_document --- $$ \newcommand{\var}{\mathrm{Var}} $$ Let us test $\var$ ```` Can be combined with other trick to hide...

This is really a question that comes often. We should write about this in an avanced section ## Topics - Using `output_format` - Adding a `*_knit` steps - Adding *...

Following https://github.com/rstudio/rmarkdown/pull/1984 in https://bookdown.org/yihui/rmarkdown-cookbook/custom-blocks.html It is now simpler: ```md ::: {.verbatim latex="true"} We show some _verbatim_ text here. ::: ```