* using log directory 'd:/Rcompile/CRANpkg/local/4.6/ggtext.Rcheck'
* using R version 4.6.1 (2026-06-24 ucrt)
* using platform: x86_64-w64-mingw32
* R was compiled by
gcc.exe (GCC) 14.3.0
GNU Fortran (GCC) 14.3.0
* running under: Windows Server 2022 x64 (build 20348)
* using session charset: UTF-8
* current time: 2026-08-05 14:26:40 UTC
* checking for file 'ggtext/DESCRIPTION' ... OK
* checking extension type ... Package
* this is package 'ggtext' version '0.1.2'
* package encoding: UTF-8
* checking package namespace information ... OK
* checking package dependencies ... OK
* checking if this is a source package ... OK
* checking if there is a namespace ... OK
* checking for hidden files and directories ... OK
* checking for portable file names ... OK
* checking whether package 'ggtext' can be installed ... OK
* checking installed package size ... OK
* checking package directory ... OK
* checking 'build' directory ... OK
* checking DESCRIPTION meta-information ... OK
* checking top-level files ... OK
* checking for left-over files ... OK
* checking index information ... OK
* checking package subdirectories ... OK
* checking code files for non-ASCII characters ... OK
* checking R files for syntax errors ... OK
* checking whether the package can be loaded ... [2s] OK
* checking whether the package can be loaded with stated dependencies ... [2s] OK
* checking whether the package can be unloaded cleanly ... [2s] OK
* checking whether the namespace can be loaded with stated dependencies ... [2s] OK
* checking whether the namespace can be unloaded cleanly ... [2s] OK
* checking loading without being on the library search path ... [2s] OK
* checking use of S3 registration ... OK
* checking dependencies in R code ... OK
* checking S3 generic/method consistency ... OK
* checking replacement functions ... OK
* checking foreign function calls ... OK
* checking R code for possible problems ... [5s] OK
* checking Rd files ... [1s] OK
* checking Rd metadata ... OK
* checking Rd cross-references ... OK
* checking for missing documentation entries ... OK
* checking for code/documentation mismatches ... OK
* checking Rd \usage sections ... OK
* checking Rd contents ... OK
* checking for unstated dependencies in examples ... OK
* checking installed files from 'inst/doc' ... OK
* checking files in 'vignettes' ... OK
* checking examples ... [2s] ERROR
Running examples in 'ggtext-Ex.R' failed
The error most likely occurred in:
> ### Name: element_textbox
> ### Title: Theme element that enables markdown text in a box.
> ### Aliases: element_textbox element_textbox_simple
>
> ### ** Examples
>
> library(ggplot2)
>
> ggplot(mtcars, aes(disp, mpg)) +
+ geom_point() +
+ labs(
+ title =
+ "Fuel economy vs. engine displacement
+ Lorem ipsum *dolor sit amet,* consectetur adipiscing elit, **sed do eiusmod tempor
+ incididunt** ut labore et dolore magna aliqua. Ut enim ad
+ minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
+ commodo consequat.",
+ x = "displacement (in3)",
+ y = "Miles per gallon (mpg)
A measure of
+ the car's fuel efficiency."
+ ) +
+ theme(
+ plot.title.position = "plot",
+ plot.title = element_textbox_simple(
+ size = 10,
+ padding = margin(5.5, 5.5, 5.5, 5.5),
+ margin = margin(0, 0, 5.5, 0),
+ fill = "cornsilk"
+ ),
+ axis.title.x = element_textbox_simple(
+ width = NULL,
+ padding = margin(4, 4, 4, 4),
+ margin = margin(4, 0, 0, 0),
+ linetype = 1,
+ r = grid::unit(8, "pt"),
+ fill = "azure1"
+ ),
+ axis.title.y = element_textbox_simple(
+ hjust = 0,
+ orientation = "left-rotated",
+ minwidth = unit(1, "in"),
+ maxwidth = unit(2, "in"),
+ padding = margin(4, 4, 2, 4),
+ margin = margin(0, 0, 2, 0),
+ fill = "lightsteelblue1"
+ )
+ )
Error: gridtext has encountered a tag that isn't supported yet:
Only a very limited number of tags are currently supported. Execution halted * checking for unstated dependencies in 'tests' ... OK * checking tests ... [6s] OK Running 'testthat.R' [6s] * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... [34s] OK * checking PDF version of manual ... [20s] OK * checking HTML version of manual ... [2s] OK * DONE Status: 1 ERROR