如何在R代码块中创建R-markdown部分?正确的代码显示

时间:2017-11-21 13:15:19

标签: r pdf latex knitr r-markdown

我目前正在使用rmarkdown编写报告,因此我想在r代码块中创建部分。我发现在 cat() results =" asis" 的帮助下,这是可能的。 我的解决方案的问题是,我的R代码结果和代码没有像往常一样正确显示。

例如

---
title: "test"
output: pdf_document
---

```{r, results='asis'}
for (i in 1:10) {
  cat("\\section{Part:", i, "}")
  print(summary(lm(data=X, X1~X2))
  $\alpha = `r X[1,i]`$  
}
```

几乎可以解决问题,但这里仍有两个问题:

  • summary()的R输出显示非常奇怪,因为我猜它被解释为LaTeX代码
  • 我不能在这个环境中使用LaTeX公式,所以如果我希望每个部分以一个方程结束,也可能使用R变量,这是不可能的

有人知道这方面的解决方案,还是有一个解决方法来在循环中创建部分并在此部分中使用R代码,R输出和LaTeX公式?

我非常感谢各种建议:)

1 个答案:

答案 0 :(得分:3)

使用markdown和逐字环境

你可以用verbatim环境包围R输出,转义代码包含四个\块。

```{r, results='asis'}
for (i in 1:10) {
  cat("\\section{Part:", i, "}")
  cat("\\begin{verbatim}")
  print(summary(lm(data=mtcars, mtcars[,1]~ mtcars[,i])))
  cat("\\end{verbatim}")
  cat(paste0("$\\\\alpha$ = ", mtcars[1,i]))  
}
```

enter image description here

使用列表包

更加花哨

在某些时候,当运行latex时,我倾向于退出markdown(.Rmd)并使用sweave(.Rnw),我发现它更容易,你可以检查.tex文件中发生了什么,并弄清楚是什么问题。

\documentclass[a4paper]{article}
\usepackage{listings}
\usepackage[usename,dvipsnames]{xcolor}
% create a set of colors
\definecolor{mygreen}{rgb}{0,0.6,0} 
\definecolor{mygray}{rgb}{0.5,0.5,0.5}
\definecolor{mymauve}{rgb}{0.58,0,0.82}
% create a listings environment suitable for R code
\lstset{ %
  backgroundcolor=\color{white},   % choose the background color; you must add \usepackage{color} or \usepackage{xcolor}
  basicstyle=\footnotesize\ttfamily, % the size of the fonts that are used for the
  % code
  breakatwhitespace=false,         % sets if automatic breaks should only happen at whitespace
  breaklines=true,                 % sets automatic line breaking
  captionpos=b,                    % sets the caption-position to bottom
  commentstyle=\color{mygreen},      % comment style
  deletekeywords={...},            % if you want to delete keywords from the given language
  escapeinside={\%*}{*)},          % if you want to add LaTeX within your code
  extendedchars=true,              % lets you use non-ASCII characters; for 8-bits encodings only, does not work with UTF-8
  frame=single,                    % adds a frame around the code
  keepspaces=true,                 % keeps spaces in text, useful for keeping indentation of code (possibly needs columns=flexible)
  keywordstyle=\color{blue},       % keyword style
  language=R,                       % the language of the code
  morekeywords={*,...},            % if you want to add more keywords to the set
  numbers=left,                    % where to put the line-numbers; possible values are (none, left, right)
  numbersep=5pt,                   % how far the line-numbers are from the code
  numberstyle=\tiny\color{mygray},   % the style that is used for the line-numbers
  rulecolor=\color{black},         % if not set, the frame-color may be changed on line-breaks within not-black text (e.g. comments (green here))
  showspaces=false,                % show spaces everywhere adding particular underscores; it overrides 'showstringspaces'
  showstringspaces=false,          % underline spaces within strings only
  showtabs=false,                  % show tabs within strings adding particular underscores
  stepnumber=2,                    % the step between two line-numbers. If it is 1, each line will be numbered
  stringstyle=\color{mymauve},      % string literal style
  tabsize=2,                       % sets default tabsize to 2 spaces
  title=\lstname                   % show the filename of files included with \lstinputlisting; also try caption instead of title
}
\title{test}
\begin{document}
\maketitle

<<r, results='asis'>>=
for (i in 1:10) {
  cat("\\section{Part:", i, "}")
  cat("\\begin{lstlisting}")
  print(summary(lm(data=mtcars, mtcars[,1]~ mtcars[,i])))
  cat("\\end{lstlisting}")
  cat(paste0("$\\\\alpha$ = ", mtcars[1,i]))  
}
@

\end{document}

enter image description here