使用时
render_book("index.Rmd", "bookdown::pdf_book")
它看起来像设置边距插入tex文件
\usepackage[margin=1in]{geometry}
bookdown-demo
repro可用于重现此问题。
在index.Rmd
,我正在使用
---
date: "`r Sys.Date()`"
knit: "bookdown::render_book"
documentclass: krantz
classoption: numberinsequence,krantz1
bibliography: [book.bib]
biblio-style: apalike
link-citations: yes
colorlinks: yes
---
这就是该样式文件设置的边距。我知道我可以modify the geometry options但是我可以避免生成这一行吗?
由于
> sessionInfo()
R version 3.3.3 (2017-03-06)
Platform: x86_64-apple-darwin13.4.0 (64-bit)
Running under: macOS Sierra 10.12.4
locale:
[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
attached base packages:
[1] stats graphics grDevices utils datasets methods base
other attached packages:
[1] bookdown_0.4
loaded via a namespace (and not attached):
[1] backports_1.0.5 magrittr_1.5 rprojroot_1.2 htmltools_0.3.6
[5] tools_3.3.3 rstudioapi_0.6 yaml_2.1.14 Rcpp_0.12.11
[9] stringi_1.1.5 rmarkdown_1.5 knitr_1.16 stringr_1.2.0
[13] digest_0.6.12 evaluate_0.10
答案 0 :(得分:4)
documentclass: krantz
表示您正在为Chapman&霍尔,我为使用 bookdown 的作者提供了a starter repo bookdown-crc
(bookdown-demo
回购不适合你)。您的问题在此回购邮件中不存在,因为I set template: null
for pdf_book
in _output.yml
。这样做的原因是我想使用Pandoc的默认模板,该模板不会将默认margin=1in
添加到YAML中的geometry
选项(并且 rmarkdown 会 - 那是罪魁祸首)。
如果你想使用 rmarkdown 的LaTeX模板(根据Pandoc'进行修改),你可以设置
geometry: false
在您index.Rmd
的YAML元数据中。
供您参考,我有专门针对Chapman& amp;霍尔作者在 bookdown 一书中写道:https://bookdown.org/yihui/bookdown/publishers.html