Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/three.js/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
R 如何强制章节从不均匀索引页开始_R_Latex_Yaml_Knitr_R Markdown - Fatal编程技术网

R 如何强制章节从不均匀索引页开始

R 如何强制章节从不均匀索引页开始,r,latex,yaml,knitr,r-markdown,R,Latex,Yaml,Knitr,R Markdown,我需要我的论文章节从索引页开始 我的YAML标题是: --- output: pdf_document: number_sections: true toc_depth: 4 fontsize: 11pt geometry: margin=1in header-includes: - \usepackage[spanish]{babel} - \usepackage{cite} - \usepackage{xcolor} - \def

我需要我的论文章节从索引页开始

我的
YAML
标题是:

---
output: 
    pdf_document:
      number_sections: true
      toc_depth: 4
fontsize: 11pt
geometry: margin=1in
header-includes:
  - \usepackage[spanish]{babel}     
  - \usepackage{cite}
  - \usepackage{xcolor} 
  - \definecolor{grey}{rgb}{0.9,0.9,0.9}  
  - \usepackage{array}
  - \usepackage{multirow}
bibliography: biblio.bib
csl: biomed-central.csl
link-citations: true
---

一些乳胶包

没有软件包,这是系统的一部分。要在knitr中执行此操作,请将以下内容添加到YAML标题中:

classoption: twoside
classoption: openright

在顶层的任何地方。它的描述(在LaTeX选项下)。将documentclass:book添加到此选项中,它会工作!谢谢