R:删除"章"部分来自bookdown :: pdf_book中的标题,带有documentclass:report

时间:2018-01-15 22:40:24

标签: r knitr r-markdown bookdown

考虑我的标题和第一部分

---
title: "asdf"
author: "asdf"
date: "13 Januar 2018"
documentclass: report
output:
  bookdown::pdf_book:
    citation_package: biblatex
    latex_engine: pdflatex
    number_sections: yes
    fig_caption: yes
---

# Introduction
Here begins my introduction

我想删除自动"第1章"部分,多数民众赞成在实际的章节标题前面(在这种情况下简介) 这不起作用

header-includes:
  \renewcommand{\chaptername}{}

另外使用另一个文档类不起作用,因为我需要在图标题中表示我的部分/章节的数量(例如图3.1) 我想要的是最终得到标题 1简介,而不是 2方法等等。 不应该努力,但我无法弄清楚。 谢谢 格雷格

1 个答案:

答案 0 :(得分:2)

您可以使用

subparagraph: true
output:
  bookdown::pdf_book:
    includes:
      in_header: preamble.tex

一起
\usepackage{titlesec}
\titleformat{\chapter}
  {\normalfont\LARGE\bfseries}{\thechapter}{1em}{}
\titlespacing*{\chapter}{0pt}{3.5ex plus 1ex minus .2ex}{2.3ex plus .2ex}
preamble.tex中的

(c.f。https://tex.stackexchange.com/questions/10326/how-to-set-the-chapter-style-in-report-class)。您必须确保在TeX系统中安装了LaTeX软件包titlesec

由于最近的pandoc TeX模板以干扰subparagraph: true的方式重新定义\paragraph\subparagraph,因此需要titlesec