如何使用 RMarkdown 在 TeX 中按名称变量分组?

How to group by name variable in TeX using RMarkdown?

这是我目前拥有的:

`r Name`
    
\begin{tabular}{cccccc}
       \textbf{ID} & \textbf{Code} & \textbf{Amount} \
       `r id` & `r code` & $ `r amount` 
    \end{tabular}
    
    
    
    \begin{flushright} \textbf{SUBTOTAL: $ `r subtotal`} \
    \textbf{FEE: $ `r fee`} \
    \textbf{TOTAL: $ `r total`} \end{flushright}

结果应如下所示:

我的结果只有 return 一行,但总数是一样的。

我会用ktable。

kable(table, "latex")