David Gohel

Results 168 comments of David Gohel
trafficstars

Solution for this issue consists in adding default formatting properties for runs inside paragraphs formatting properties

I found something that may be the reason, HTML output is using shadow dom by default with flextable and the content is in a tag ``. It seems the content...

@dax44 You can set knitr chunk option `ft.shadow=FALSE` as a workaround (but there may be styles issues if some css has been defined for tables). ````` --- format: html ---...

@jjallaire There are side effects. In the following example, I voluntarily added a CSS definition that conflicts with one of those of flextable because the result is not encapsulated in...

@jjallaire it's ok for me, thanks for the fix, it's great. Also, thanks for the pointer to caption and cross-ref, I'll explore that soon and will try to give feedback.

It should be OK now, not yet on CRAN (next week probably). Note I am using the dev version of Quarto, captions in Word were the big deal, and it...

Hello Not exactly possible right now with a single command. There is one workaround via `save_as_image`: ``` library(flextable) library(webshot2) ft autofit() save_as_image(x = ft, path = "ft.pdf", webshot = "webshot2")...

It's now implemented thanks to grid graphics! (note it can be slow with large tables) ``` library(flextable) ft autofit() gr

Hello, I don't know how to do it unless if format is pdf. I think it is only managed correctly by pdf. Did your Word example has been done manually...