全部版块 我的主页
论坛 计量经济学与统计论坛 五区 计量经济学与统计软件 LATEX论坛
972 0
2016-06-18
Advanced Customization
Keeping Intermediate TeX

R Markdown documents are converted to PDF by first converting to a TeX file and then calling the LaTeX engine to convert to PDF. By default this TeX file is removed, however if you want to keep it (e.g. for an article submission) you can specify the keep_tex option. For example:

---title: "Habits"output:  beamer_presentation:    keep_tex: true---


Includes

You can do more advanced customization of PDF output by including additional LaTeX directives and/or content or by replacing the core pandoc template entirely. To include content in the document header or before/after the document body you use the includes option as follows:

---title: "Habits"output:  beamer_presentation:    includes:      in_header: header.tex      before_body: doc_prefix.tex      after_body: doc_suffix.tex---


Custom Templates

You can also replace the underlying pandoc template using the template option:

---title: "Habits"output:  beamer_presentation:    template: quarterly_report.tex---

Consult the documentation on pandoc templates for additional details on templates. You can also study the default Beamer template as an example.



Markdown Extensions

By default R Markdown is defined as all pandoc markdown extensions with the following tweaks for backward compatibility with the markdown package:

+autolink_bare_uris+ascii_identifier+tex_math_single_backslash

You can enable or disable markdown extensions using the md_extensions option (you preface an option with - to disable and + to enable it). For example:

---title: "Habits"output:  html_document:    md_extensions: -autolink_bare_uris+hard_line_breaks---

The above would disable the autolink_bare_uris extension and enable the hard_line_breaks extension.

For more on available markdown extensions see the pandoc markdown specification.



Pandoc Arguments

If there are pandoc features you want to use that lack equivilants in the YAML options described above you can still use them by passing custom pandoc_args. For example:

---title: "Habits"output:  beamer_presentation:    pandoc_args: [      "--no-tex-ligatures"    ]---


二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

相关推荐
栏目导航
热门文章
推荐文章

说点什么

分享

扫码加好友,拉您进群
各岗位、行业、专业交流群