【发布时间】:2020-05-12 02:32:57
【问题描述】:
我正在尝试在标题的两侧放置垂直边框,并且能够为左侧而不是右侧获得边框。
library(officer)
library(flextable)
library(dplyr)
bigborder <- fp_border(style = "solid", width=2)
flextable(head(iris)) %>%
add_header_row(top = TRUE, values = c("12", "3", "45"), colwidths = c(2,1, 2)) %>%
add_header_row(top = TRUE, values = c("123", "45"), colwidths = c(3, 2)) %>%
border(border.left = bigborder, j = 1, part = "all") %>%
border(border.right= bigborder, j = 5, part = "all")
【问题讨论】: