r2rtf
r2rtf copied to clipboard
Easily Create Production-Ready Rich Text Format (RTF) Table and Figure
Suggestion from @yihui: https://github.com/Merck/r2rtf/pull/217/files?diff=unified&w=0#r1564779269 The goal is to put the `unicode_latex` variable in an R script, to replace the current binary form stored in `R/sysdata.rda`. This would also avoid the...
Template: https://github.com/rstudio/cheatsheets/blob/main/powerpoints/0-template.pptx Functions: * https://github.com/elong0527/r4csr/blob/main/slides/function-summary.png * https://merck.github.io/r2rtf/reference/index.html Other Examples: https://github.com/rstudio/cheatsheets
Fixes #227 This PR introduces `safe_par()` and `safe_strwidth()` as alternatives to their original graphics functions. These wrappers will be evaluated in a temporary BMP device, to avoid generating `Rplots.pdf` when...
To reproduce the issue: ```r usethis::create_package("zzz/") usethis::use_testthat() ``` Run `usethis::use_r("myfun")` and put this function into it: ``` #' @export myfun r2rtf::rtf_body() |> r2rtf::rtf_encode() |> r2rtf::write_rtf(file = path) } ``` Run...
Prepare for release - [x] Check current CRAN check results - [x] Check licensing of included files - [x] Review pkgdown reference index for, e.g., missing topics - [ ]...
This PR adds libreoffice 24.8 and 24.2 support to the internal format converter function. In case you wonder why the big version jump from 7.x to 24.x: libreoffice has switched...