我想使用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}
我想使用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}
这对我的作品
<< label=Test1, echo=FALSE>>=
cn <- 2+1
@
\chapter*{Chapter \Sexpr{cn}}
在RMarkdown你可以使用如下代码
# `r I(1+2)`