在 Latex 文档中像 R 一样格式化

在 Latex 文档中像 R 一样格式化

我是个新手。我想在所附的屏幕截图中写下 R 包的名称,如“lavaan”,但我真的不知道如何实现。有人能帮忙吗?我一次只能格式化一个单词,就像这样。 在此处输入图片描述

答案1

这将自动列出 R 会话的包,具有所需的格式:

姆韦

测试.Rnw在 Rstudio 中(或测试版在 Overleaf 中)

\documentclass{article}
\begin{document}

<<foo,echo=F>>=

library(xtable)   # loaded only for test
library(ggplot2)  # loaded only for test

@

\subsection*{A hard R work} 


<<morefoo,echo=T>>=
2+3
@

\subsection*{Materials and Methods} 

<<info,echo=F>>=
a <- knitr::combine_words(.packages(), 
before = "\\texttt{", after ="}")
@

For this hard work we used the 
\Sexpr{sessionInfo()$R.version$version.string} 
with  the  packages \Sexpr{a}.

\end{document}

相关内容