2016-11-20 69 views
0

我試圖編織以下Rmardown:R降價「幻數」錯誤?

--- 
title: "Title" 
author: "Author" 
date: '20 nov 2016 г ' 
output: 
    pdf_document: 
    latex_engine: xelatex 
--- 
## Next inline code produced error: `r 98809` 

錯誤:

processing file: 111.Rmd 
output file: 111.knit.md 

! Missing $ inserted. 
<inserted text> 
       $ 
l.91 ...e code produced error: 9.880910\^{}\{4\}}} 

pandoc.exe: Error producing PDF 
Ошибка: pandoc document conversion failed with error 43 

如果我編輯號碼和刪除最後一個「9」看起來喜歡這個r 9880一切會好起來的.. 。

這是一個錯誤?

我新鮮 - [R測試:

> sessionInfo() 
R version 3.3.2 (2016-10-31) 
Platform: x86_64-w64-mingw32/x64 (64-bit) 
Running under: Windows >= 8 x64 (build 9200) 

locale: 
[1] LC_COLLATE=Russian_Russia.1251 LC_CTYPE=Russian_Russia.1251 LC_MONETARY=Russian_Russia.1251 LC_NUMERIC=C     LC_TIME=Russian_Russia.1251  

attached base packages: 
[1] stats  graphics grDevices utils  datasets methods base  

loaded via a namespace (and not attached): 
[1] magrittr_1.5 assertthat_0.1 htmltools_0.3.5 tools_3.3.2  yaml_2.1.13  tibble_1.2  Rcpp_0.12.7  stringi_1.1.2 rmarkdown_1.1 stringr_1.1.0 digest_0.6.10 
[12] evaluate_0.10 
> 

回答

0

嘗試修改文件的最後一行:

## Next inline code produced error: `r format(98809)` 
+0

是的,它的作品!但爲什麼? ) – atolk

+0

當數字很大時,比方說大於10000,如果數字不是10的冪,那麼必須使用科學格式來指定。 –