有没有办法在R Markdown中更改标题文字的字体大小?
我知道如何对文章的各个部分进行编号;但是,就格式而言,编号为1., 2., 3...
的部分的字体大小太大。作为一种解决方法,我一直在使用较低级别的标头### Introduction
,但这些标题编号错误。
这是一个基本的例子:
---
output: bookdown::pdf_document2
---
# This is too big
### This is the right size but are labelled as 1.0.1
答案 0 :(得分:1)
你可以放置
\usepackage[medium]{titlesec} % or small
中的preamble.tex
(或者你有特殊的LaTeX命令)和
subparagraph: yes
在YAML标题中(c.f。this question)。 有关更详细的答案,我们需要一个最小的工作示例。
答案 1 :(得分:1)
解决此问题的一种方法是通过包含css
文件来更改节标题的字体大小。一个例子是:
h1 {font-size:16px; }
h2 {font-size:14px; }
h3 {font-size:12px; }
h1{}
内指定的字体大小将更改深度1标题的字体大小(即# Section
)。 h2{}
中指定的字体大小将更改深度2标题的字体大小(即## Subsection
),依此类推。