我有一个包含以下父/子结构的文档
主
1章
分析1
结果1
第2章
分析2
结果2
在我的第1章孩子中,我设置了:
inline_hook <- function (x) {
if (is.numeric(x)) {
# ifelse does a vectorized comparison
# If integer, print without decimal; otherwise print two places
res <- ifelse(x == round(x),
sprintf("%d", x),
sprintf("%.2f", x)
)
paste(res, collapse = ", ")
}
}
knit_hooks$set(inline = inline_hook)
但是,这将转入我的第2章子文档(打破一些表格),我该如何防止这种情况?