码迷,mamicode.com
首页 > 其他好文 > 详细

markdown转为pdf文档---Rmarkdown

时间:2020-02-08 13:33:24      阅读:59      评论:0      收藏:0      [点我收藏+]

标签:运行   ima   mamicode   class   概念   rate   ble   height   tle   

Typora可以输出Pdf,但是样式并不够好看,尤其是没有页码的概念,转化出的tex再编译,代码高亮方式也不太合适。
那么,Rmarkdown要更好一些。
只需要在md文件前填写一些记录,再改为rmd的后缀,用knit编译即可。
插入代码时,代码段使用```python ```不要使用大括号,那会在编译文档过程中运行代码。

---
title: "markdown2pdf"
output: 
  pdf_document: 
    toc: true
    toc_depth: 2
    
    fig_width: 7
    fig_height: 6
    fig_caption: true
    
    df_print: kable
    
    highlight: tango
    latex_engine: xelatex
    citation_package: biblatex
    keep_tex: true
---

效果
技术图片
技术图片
技术图片

GBoost = GradientBoostingRegressor(n_estimators=600, learning_rate=0.05,
                                   max_depth=4, max_features='auto',
                                   min_samples_leaf=15, min_samples_split=5, 
                                   loss='huber', random_state =5)

参考:谢益辉的Rmarkdown包文档。

markdown转为pdf文档---Rmarkdown

标签:运行   ima   mamicode   class   概念   rate   ble   height   tle   

原文地址:https://www.cnblogs.com/lingr7/p/12275877.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!