在胶水包中,您“可以在行尾使用 \\ 来防止添加换行符”。在 LaTeX 中 \\ 是换行符。
我正在寻找比我目前的解决方案更好的解决方案
glue_data(iris,
"\\midrule
\\textbf{{{mean(Petal.Length)}} & 820 & 100\\% \\\\
~other & 902 \\\\"
)
实际输出:
\midrule
\textbf{3.758} & 820 & 100\% \~other & 902 \\
预期输出:
\midrule
\textbf{3.758} & 820 & 100\% \\
~other & 902 \\
我目前丑陋且容易出错的修复:
glue_data(iris,
"\\midrule
\\textbf{{{mean(iris$Petal.Length)}} & 820 & 100\\% \\\\\\
\n~other & 902 \\\\"
)
\midrule
\textbf{3.758} & 820 & 100\% \\
~other & 902 \\