knitr:章名称是 - [R块代码名称(knitr: Chapter name is the n

2019-10-21 02:14发布

我想使用R块码输出作为章节名称,但不能想出如何做到这一点。 下面是我的最低工作的例子。

\documentclass{book}
\usepackage[T1]{fontenc}

\begin{document}

\chapter{cat(
<< label=Test1, echo=FALSE, results="asis">>=
2+1
@
)
}

Chapter name is the output of R chunk Code.

\end{document}

Answer 1:

这对我的作品

<< label=Test1, echo=FALSE>>=
cn <- 2+1
@

\chapter*{Chapter \Sexpr{cn}}


Answer 2:

在RMarkdown你可以使用如下代码

# `r I(1+2)`


文章来源: knitr: Chapter name is the name of R chunk code