Kable 中的断线和粗体标题

问题描述 投票:0回答:1

如何打破用

Kable
生成的PDF表格的标题并将上部变成粗体?

这是我生成的表格:

我需要标题为:bold{Producte Interior brut} reaklinehere {(% de variació interanual, llevat dels casos indicats)}

这是数据集和代码:

structure(list(...1 = c("Catalunya", "PIB", "Demanda interna1", 
"Demanda externa1", "Espanya", "PIB", "Demanda interna1", "Demanda externa1", 
"Zona euro", "PIB", "Demanda interna1", "Demanda externa1", "PIB d'Alemanya", 
"PIB de França", "PIB d'Itàlia", "Internacional", "PIB de la UE-27", 
"PIB dels EUA", "PIB del Japó"), `2020` = c(NA, -11.9, -7.4, 
-4.5, NA, -11.2, -9, -2.2, NA, -6.1, -5.57, -0.53, -3.8, -7.5, 
-9, NA, -5.6, -2.2, -4.3), `2021` = c(NA, 6.2, 3.8, 2.4, NA, 
6.4, 5.9, 0.5, NA, 5.6, 4.24, 1.36, 3.2, 6.4, 8.3, NA, 5.7, 5.8, 
2.1), `2022` = c(NA, 5.5, 2.7, 2.8, NA, 5.5, 5.12183164381576, 
0.378168356184236, NA, 3.6, 3.76, -0.16, 1.8, 2.5, 3.7, NA, 3.5, 
1.9, 1.1), `1r 2023` = c(NA, 3.2, 1.1, 2.1, NA, 4.1, 1.3, 2.8, 
NA, 1.2, 0.63, 0.57, -0.2, 1, 2.1, NA, 1.1, 1.71772942152937, 
2), `2n 2023` = c(NA, 2.1, 1.2, 0.9, NA, 2, 2.2, -0.2, NA, 0.5, 
0.46, 0.04, 0.1, 1.1, 0.3, NA, 0.4, 2.38237207285343, 1.7), `3r 2023` = c(NA, 
2.1, NA, NA, NA, 1.8, 1.6, 0.2, NA, 0.1, NA, NA, -0.4, 0.7, 0, 
NA, 0.1, 3, 1.2)), row.names = c(NA, -19L), class = c("tbl_df", 
"tbl", "data.frame"))

表:

p3_1 <- read_xlsx("G:/SUBDIRECCIO-ESTUDIS/CONJUNTURA/INDICADORS MENSUALS/Automatitzacio_IC/proves R/IC_fitxer_RECULL_Maria.xlsx",
                  range = "B5:M24", 1, col_types = c("text", "numeric", "numeric", "numeric", "numeric", "numeric", "numeric", "numeric", "numeric", "numeric", "numeric", "numeric")) [, -c(2,4,5,7,9)] 


    options(knitr.kable.NA = "-")
    
    
    grp_nm <- c("Catalunya", "Espanya", "Zona euro", "Internacional")
    
    p3_1 <- 
      p3_1 %>% 
      mutate(grp = ifelse(...1 %in% grp_nm, ...1, NA),
             ...1 = case_when(str_detect(...1, "interna1") ~ "$\\text{Demanda interna}^1$",
                              str_detect(...1, "externa1") ~ "$\\text{Demanda externa}^1$",
                              TRUE ~ ...1))%>%
      fill(grp) %>% 
      filter(!...1 %in% grp_nm) %>% 
      select(grp, everything())
      
    
    kable(p3_1[, -1],
          align = "lrrrrrr",
          col.names = c("", names(p3_1[-(1:2)])),
          booktabs=TRUE,
          digits=1,
          format.args = list(big.mark="."),
          linesep = "" ,
          caption="Producte interior brut (\\% de variació interanual, llevat dels casos indicats)", escape = FALSE) %>%
      add_header_above(c("", "Any" = 3, "Trimestre" = 3), bold=T) %>%
      kable_styling(latex_options=c("HOLD_position","scale_down"), position="center") %>% 
      column_spec(1, width="4cm") %>% 
      column_spec(2:7, width="2cm") %>% 
      row_spec(0, bold = T) %>% 
      pack_rows(index = table(p3_1$grp), background = "#E0E0E0", latex_gap_space = "0pt") %>%
      footnote(general="Idescat; Eurostat; INE; BEA; ESRI; Agència Estatal d'Administració Tributària.", general_title = "Font:", footnote_as_chunk = T,)  %>%
      footnote(general="$^{A}$Dada avançada. $^{1}$Contribució al creixement. $^{2}$Sèrie original corregida d'efectes de calendari.
               $^{3}$En valors constants. Exclou estacions de servei.",  escape = F, general_title = "Nota:", threeparttable = TRUE, footnote_as_chunk = T,)
r kable caption
1个回答
0
投票

正如 @dufei 建议的那样,这可以通过设置 LaTeX 标题包的参数来完成。例如:

---
output: pdf_document
header-includes:
  - \usepackage[font={bf}]{caption} 
  
---

```{r}

library(kableExtra)

    kbl(mtcars[1:3, 1:4],
        caption="Caption in bold. \\\\ With a line break for a second line",
        booktabs = TRUE)

```

注意标题包默认将标题居中。如果更可取的话,有些参数允许对标题进行合理化和缩进。如果需要,标题包还允许您单独编辑标题的标签和文本。

© www.soinside.com 2019 - 2024. All rights reserved.