我在 Win7 下使用 Rstudio。有没有办法让 knitr 自动转义一个角色?请参阅下面的更简单的示例:
\documentclass[a4]{article}
\title{Example}
\author{Stat-R}
\begin{document}
\maketitle
<<nothing,echo=FALSE>>=
my_name <- 'hari'
my_number <- 100
df1 <- data.frame(my_name,my_number)
df1
# names(df1)
@
\section{Testing only}
Now I will print the columnnames of my data frame df1
$\Sexpr{names(df1)}$
\end{document}
我得到以下输出...
但我想要以下
我将不得不在我的 tex 文件中将所有“_”更改为“_”。有没有办法直接在 sweave 文件中进行操作。我将不胜感激有关这方面的任何建议...