Christophe Dervieux

Results 1378 comments of Christophe Dervieux

@GitHunter0 @yihui I have a made a specific issue to track this idea as a single item. Edit: it was in fact already a feature request in https://github.com/yihui/knitr/issues/1928

Can you share an example of a document with a ggplot2 and where you use the tikz device ? This will help understand what is the issue here. For a...

@aksigkvgithub could you share a full example of how you tried to use **knitr** for a typst document ? For now we have no specific support and I am curious...

I like the idea of debugging options. I think it should be really lightweight, for internal debugging mainly. Otherwise it could become quite verbose. What motivates the logging package ?...

You can write to file with debugme. Everything is controled by env var externally by the user. See redirecting output section in the help page https://rdrr.io/cran/debugme/man/debugme.html

Thanks for the suggestion ! This would be an issue for the RStudio IDE (https://github.com/rstudio/rstudio) as this is where the `CTRL + ALT + I` feature is implemented. We can't...

You indeed need to use `type = "yaml"` as it is not the default unless you are converting from a .qmd ``` knitr::convert_chunk_header("foo.qmd", output = identity) ``` So you can...

For reference, we have already a `knit_exit()` function that allows to stop rendering in the middle of the document. https://bookdown.org/yihui/rmarkdown-cookbook/knit-exit.html There is no reason associated though - Don't know if...

Thanks for the report. First let's not there is `fig.width` and `fig.height`, `dpi` but also `fig.retina` or `fig.asp` which are taken into account. The output size in document will also...

I can add that a package registering an engine may not be a package only to be used with **knitr**, and sometimes **knitr** is only a suggest. So running `knitr::knit_engine$set()`...