3

tufteマークダウンスタイルに問題があります...

コード チャンクの一部が正しくフォーマットされていません。改行が認識されず、テキストがコメントと画像のあるサイド エリアに浮かんでいます (これは正しい単語ですか?)。

例:

---
title: "test"
author: "user"
date: "Now"
output:
  tufte::tufte_handout: 
    number_sections: yes
    toc: yes
    toc_depth: 1
---

Some test lines

```{r, eval=FALSE}
re_quantify_setting <- 
  parameters[,'Value'][parameters[,'Parameter'] == 'Re-quantify']
if(re_quantify_setting != 'False') {
  stop('Re-quantify was set to \'True\'! ',    
       'Please reanalyse data with correct MaxQuant settings.')
}
```

```{marginfigure}
Also a common problem is that people often just mark all lines of code and then 
just executing (Run) it. Here it might happen that an error occured at the beginning
of the script but was not seen by the user because code is executing so fast.  
This can be prevent by using the **Source**-button. The script will stop in case 
of an error message!
```

そしてここに結果があります:

PDF出力

なぜこれが起こるのか、正しい改行を取得する方法を知っている人はいますか?

4

1 に答える 1

2

片付けを無効にすることができます:

```{r, echo=FALSE}
knitr::opts_chunk$set(tidy=FALSE)
```
于 2016-04-14T14:03:14.247 に答える