create two or more pages consecutively with ggpubr:ggtexttable

How create two or more pages consecutively from data.table or data.frame with ggpubr:ggtexttable , as the picture shows:

The data in the figure are as follows:

DT<-data.table::data.table(
          id = c(1L,2L,3L,4L,5L,6L,7L,8L,9L,10L,
                 11L,12L,13L,14L,15L,16L,17L,18L,19L,20L,21L,22L,23L,
                 24L,25L,26L,27L,28L,29L,30L,31L,32L,33L,34L,35L,36L),
       value = c("DEE","FGH","ZXV","ABC","ZXV","ABC",
                 "FGH","ABC","ABC","DEE","FGH","ABC","FGH","ABC","DEE",
                 "FGH","ABC","ABC","ABC","ABC","ABC","ABC","ABC","ZXV",
                 "ZXV","FGH","FGH","DEE","ZXV","DEE","ABC","FGH","DEE",
                 "ABC","FGH","FGH"),
        data = c("21/11/2020","21/11/2020","21/11/2020",
                 "21/11/2020","21/11/2020","21/11/2020","25/11/2020",
                 "25/11/2020","25/11/2020","25/11/2020","25/11/2020","25/11/2020",
                 "25/11/2020","27/11/2020","27/11/2020","27/11/2020",
                 "27/11/2020","27/11/2020","27/11/2020","27/11/2020","27/11/2020",
                 "28/11/2020","28/11/2020","28/11/2020","28/11/2020",
                 "28/11/2020","28/11/2020","28/11/2020","01/12/2020","01/12/2020",
                 "01/12/2020","01/12/2020","01/12/2020","01/12/2020",
                 "01/12/2020","01/12/2020")
)

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.