Ulrik Lyngs

Results 38 comments of Ulrik Lyngs

Same problem here: "The use of this addin requires RStudio 0.99.796 or newer (your version is 2021.9.0.351)."

Ah I see - I've never ever had a need for multiple `kable()` calls in a single code chunk, so perhaps in that (perhaps rare) use case it could simply...

This particular use case I think already has a straightforward solution with the chunk option `fig.env`: ```` ```{r, fig.env='table', fig.cap="Table included as image"} knitr::include_graphics("image-of-a-table.png") ``` ````

Some of the answers to my troubles are explained in [this google doc](https://docs.google.com/document/d/1_LPOcwMOM051qzhqMixqLLKXZ5SH9Vjd3_UA-tZniek/edit?usp=sharing) - perhaps this can be linked to on the readme, to reduce frustration for newbies like myself...

If it's useful, here's the functions I just wrote myself to solve it: ```r # this helper function takes the name of a column, the column data, and a tibble...

Just ran into this issue when I tried to recompile my PhD thesis from a couple of years ago and the longtable functionality was broken. Seems the [`tabularray`](https://ctan.org/pkg/tabularray) package is...

+1! Having an easy way to let the user choose which columns they want to see, and reorder them (#270), are the only missing pieces that's causing me holding me...

Hmmm it seems it's actually not about the break tags, I get the same problem with regular content that overflows between pages: ```` --- output: pagedown::html_paged --- ```{r, echo=FALSE, message=FALSE}...

The workaround I use is to manually add a page break at the end of the content in the last cell that fits on a page. I do this by...

@cderv any chance you know some magical way we might go around fixing this? :)